Manhwa18cc: Latest Updates "fix" (#3168)

Use unordered page for Latest Updates instead
This commit is contained in:
Smol Ame 2024-05-21 22:38:30 -07:00 committed by Draff
parent 943ac6e891
commit c97b4e5e9e
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.Manhwa18CcFactory'
themePkg = 'madara'
baseUrl = 'https://manhwa18.cc'
overrideVersionCode = 4
overrideVersionCode = 5
isNsfw = true
}

View File

@ -47,7 +47,7 @@ abstract class Manhwa18Cc(
override fun popularMangaRequest(page: Int): Request = GET("$baseUrl/webtoons/$page?orderby=trending")
override fun latestUpdatesRequest(page: Int): Request = GET("$baseUrl/webtoons/$page?orderby=latest")
override fun latestUpdatesRequest(page: Int): Request = GET("$baseUrl/webtoons/$page")
override fun searchMangaSelector() = popularMangaSelector()