Changed url for mangapark extension (#6724)

* Temporary fix to use the legacy server 

site had a update that changed page format, they currently have a copy of the legacy interface on https://v2.mangapark.net/ , this is a patch since it will likely be fully shut down soon, the new interface needs the scraper redone to be supported as far as I cant tell.

* Update build.gradle
This commit is contained in:
Jaykoerner 2021-04-27 06:14:51 -05:00 committed by GitHub
parent cfea7668b7
commit 179a97aa2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'MangaPark' extName = 'MangaPark'
pkgNameSuffix = 'en.mangapark' pkgNameSuffix = 'en.mangapark'
extClass = '.MangaPark' extClass = '.MangaPark'
extVersionCode = 18 extVersionCode = 19
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -35,7 +35,7 @@ class MangaPark : ConfigurableSource, ParsedHttpSource() {
override val supportsLatest = true override val supportsLatest = true
override val name = "MangaPark" override val name = "MangaPark"
override val baseUrl = "https://mangapark.net" override val baseUrl = "https://v2.mangapark.net"
private val nextPageSelector = ".paging:not(.order) > li:last-child > a" private val nextPageSelector = ".paging:not(.order) > li:last-child > a"