From 179a97aa2abb18039025a2e3d4776a2e4b33e9d1 Mon Sep 17 00:00:00 2001 From: Jaykoerner Date: Tue, 27 Apr 2021 06:14:51 -0500 Subject: [PATCH] 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 --- src/en/mangapark/build.gradle | 2 +- .../src/eu/kanade/tachiyomi/extension/en/mangapark/MangaPark.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/en/mangapark/build.gradle b/src/en/mangapark/build.gradle index 5025c3ce3..93123551b 100644 --- a/src/en/mangapark/build.gradle +++ b/src/en/mangapark/build.gradle @@ -5,7 +5,7 @@ ext { extName = 'MangaPark' pkgNameSuffix = 'en.mangapark' extClass = '.MangaPark' - extVersionCode = 18 + extVersionCode = 19 libVersion = '1.2' } diff --git a/src/en/mangapark/src/eu/kanade/tachiyomi/extension/en/mangapark/MangaPark.kt b/src/en/mangapark/src/eu/kanade/tachiyomi/extension/en/mangapark/MangaPark.kt index d11cd0df8..bf08931be 100644 --- a/src/en/mangapark/src/eu/kanade/tachiyomi/extension/en/mangapark/MangaPark.kt +++ b/src/en/mangapark/src/eu/kanade/tachiyomi/extension/en/mangapark/MangaPark.kt @@ -35,7 +35,7 @@ class MangaPark : ConfigurableSource, ParsedHttpSource() { override val supportsLatest = true 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"