Fix MangaDex popular request (#1192)

This commit is contained in:
Eugene 2019-06-12 22:07:17 -04:00 committed by GitHub
parent 8f04b62814
commit e4641f13fc
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 {
appName = 'Tachiyomi: MangaDex'
pkgNameSuffix = 'all.mangadex'
extClass = '.MangadexFactory'
extVersionCode = 61
extVersionCode = 62
libVersion = '1.2'
}

View File

@ -98,7 +98,7 @@ open class Mangadex(override val lang: String, private val internalLang: String,
override fun latestUpdatesSelector() = "tr a.manga_title"
override fun popularMangaRequest(page: Int): Request {
return GET("$baseUrl/titles/0/$page/", headersBuilder().build())
return GET("$baseUrl/titles/7/$page/", headersBuilder().build())
}
override fun latestUpdatesRequest(page: Int): Request {