MangaRaw: change latest manga url (#10626)

This commit is contained in:
Vetle Ledaal 2022-01-31 12:11:31 +00:00 committed by GitHub
parent 3d1630b784
commit 8cf57226ed
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 = 'MangaRaw'
pkgNameSuffix = 'ja.mangaraw'
extClass = '.MangaRawFactory'
extVersionCode = 3
extVersionCode = 4
}
apply from: "$rootDir/common.gradle"

View File

@ -41,7 +41,7 @@ abstract class MangaRaw(
override fun popularMangaNextPageSelector() = ".next.page-numbers"
override fun latestUpdatesRequest(page: Int) = GET("$baseUrl/newmanga/page/$page", headers)
override fun latestUpdatesRequest(page: Int) = GET("$baseUrl/page/$page", headers)
override fun latestUpdatesSelector() = popularMangaSelector()