Update src/ja/nicomanga/src/eu/kanade/tachiyomi/extension/ja/nicomanga/Nicomanga.kt

Co-authored-by: FourTOne5 <107297513+FourTOne5@users.noreply.github.com>
This commit is contained in:
CodeSpoof 2024-01-10 12:39:15 +01:00 committed by GitHub
parent e36d915c9b
commit 3067f81a46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@ class Nicomanga : HttpSource() {
} else {
doc.select(".pagination li:last-of-type a.active").size == 0
}
val mangas = mangaList.map { manga ->
val mangas = doc.select(".row > .thumb-item-flow").map { manga ->
SManga.create().apply {
val relURL = manga.selectFirst(".series-title a")?.attr("href") ?: ""
setUrlWithoutDomain(URL(URL(baseUrl), relURL).toString())