IkigaiMangas: Fix nsfw cookie value (#9667)

fix nsfw cookie
This commit is contained in:
kanoou 2025-07-16 11:00:01 -05:00 committed by Draff
parent 0a7189534e
commit 187fa7de52
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Ikigai Mangas'
extClass = '.IkigaiMangas'
extVersionCode = 24
extVersionCode = 25
isNsfw = true
}

View File

@ -70,8 +70,7 @@ class IkigaiMangas : HttpSource(), ConfigurableSource {
private val cookieInterceptor = CookieInterceptor(
"",
listOf(
"data-saving" to "0",
"nsfw-mode" to "1",
"nsfw-mode" to "true",
),
)