hentaiukr: 🍓 Change type for tag id (int -> str)
This commit is contained in:
parent
938534166a
commit
094f6603bd
2 changed files with 3 additions and 2 deletions
|
@ -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")
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 (
|
||||||
|
|
Loading…
Reference in a new issue