NHentai | Add missing image type ".gif" (#6364)

* Add image type .gif to the selector

* Bump versioncode
This commit is contained in:
Nguyen Ngoc Duy Bao 2024-11-28 20:40:22 +07:00 committed by Draff
parent aa5804b858
commit b462b1429b
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'NHentai' extName = 'NHentai'
extClass = '.NHFactory' extClass = '.NHFactory'
extVersionCode = 48 extVersionCode = 49
isNsfw = true isNsfw = true
} }

View File

@ -274,6 +274,7 @@ open class NHentai(
when (image.t) { when (image.t) {
"w" -> ".webp" "w" -> ".webp"
"p" -> ".png" "p" -> ".png"
"g" -> ".gif"
else -> ".jpg" else -> ".jpg"
}, },
) )