MangaCards: URL assignment fix (#1424)

MangaCards: URL assignment fix
This commit is contained in:
Vesnyx 2019-08-25 23:44:22 +00:00 committed by Eugene
parent 1ceabfb6d7
commit c7db4b62ae
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: MangaCards (Valhalla, NANI?)'
pkgNameSuffix = 'all.mangacards'
extClass = '.MangaCardsFactory'
extVersionCode = 1
extVersionCode = 2
libVersion = '1.2'
}

View File

@ -153,7 +153,7 @@ abstract class MangaCards (
val body = FormBody.Builder()
.add("mode", "Webtoon")
.build()
return POST("$baseUrl/${chapter.url}", headers, body)
return POST("$baseUrl${chapter.url}", headers, body)
}
override fun pageListParse(document: Document): List<Page> {