GMANGA : FIX ( #9125 / #7802 ) (#9254)

* Update Gmanga.kt

* Update build.gradle
This commit is contained in:
zeredouni 2021-09-27 16:10:19 +02:00 committed by GitHub
parent 58b5124bf2
commit 409e8192f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'GMANGA' extName = 'GMANGA'
pkgNameSuffix = 'ar.gmanga' pkgNameSuffix = 'ar.gmanga'
extClass = '.Gmanga' extClass = '.Gmanga'
extVersionCode = 6 extVersionCode = 7
containsNsfw = false containsNsfw = false
} }

View File

@ -30,7 +30,7 @@ import okhttp3.Response
class Gmanga : ConfigurableSource, HttpSource() { class Gmanga : ConfigurableSource, HttpSource() {
private val domain: String = "gmanga.org" private val domain: String = "gmanga.me"
override val baseUrl: String = "https://$domain" override val baseUrl: String = "https://$domain"
@ -143,7 +143,7 @@ class Gmanga : ConfigurableSource, HttpSource() {
Page( Page(
index, index,
"$url#page_$index", "$url#page_$index",
"https://media.$domain/uploads/releases/${releaseData["storage_key"].asString}/mq${if (hasWebP) "_webp" else ""}/$pageUri" "https://media.$domain/uploads/releases/${releaseData["storage_key"].asString}/hq${if (hasWebP) "_webp" else ""}/$pageUri"
) )
} }
} }