EgoToons: Fix loading content (#8801)

Fix loading content
This commit is contained in:
Chopper 2025-05-10 17:56:27 -03:00 committed by Draff
parent 913eddbbfc
commit b44f7c144d
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.EgoToons'
themePkg = 'yuyu'
baseUrl = 'https://egotoons.com'
overrideVersionCode = 0
overrideVersionCode = 1
isNsfw = true
}

View File

@ -9,6 +9,9 @@ class EgoToons : YuYu(
"pt-BR",
) {
override fun headersBuilder() = super.headersBuilder()
.set("Accept-Encoding", "")
override val client = super.client.newBuilder()
.rateLimit(2)
.build()