hentaiukr: 🍓 Change type for tag id (int -> str)

This commit is contained in:
CakesTwix 2023-09-18 22:29:04 +03:00
parent 938534166a
commit 094f6603bd
Signed by: CakesTwix
GPG key ID: 7B11051D5CE19825
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,7 @@
// use an integer for version numbers // use an integer for version numbers
version = 2 version = 3
// TODO: Need drop this
dependencies{ dependencies{
implementation("com.google.code.gson:gson:2.9.0") implementation("com.google.code.gson:gson:2.9.0")
} }

View file

@ -40,7 +40,7 @@ data class Manga (
) )
data class Tags ( data class Tags (
@SerializedName("id") val id : Int, @SerializedName("id") val id : String,
@SerializedName("name") val name : String, @SerializedName("name") val name : String,
) )
data class Video ( data class Video (