diff --git a/src/es/manhwaweb/build.gradle b/src/es/manhwaweb/build.gradle index af8e3f406..017c320e7 100644 --- a/src/es/manhwaweb/build.gradle +++ b/src/es/manhwaweb/build.gradle @@ -1,7 +1,7 @@ ext { extName = 'ManhwaWeb' extClass = '.ManhwaWeb' - extVersionCode = 3 + extVersionCode = 4 isNsfw = true } diff --git a/src/es/manhwaweb/src/eu/kanade/tachiyomi/extension/es/manhwaweb/ManhwaWeb.kt b/src/es/manhwaweb/src/eu/kanade/tachiyomi/extension/es/manhwaweb/ManhwaWeb.kt index 13329e48f..bf0aa6916 100644 --- a/src/es/manhwaweb/src/eu/kanade/tachiyomi/extension/es/manhwaweb/ManhwaWeb.kt +++ b/src/es/manhwaweb/src/eu/kanade/tachiyomi/extension/es/manhwaweb/ManhwaWeb.kt @@ -132,7 +132,7 @@ class ManhwaWeb : HttpSource() { override fun chapterListParse(response: Response): List { val result = json.decodeFromString(response.body.string()) - val chapters = result.chapters.map { it.toSChapter() } + val chapters = result.chapters.filterNot { it.espUrl == null && it.rawUrl == null }.map { it.toSChapter() } return chapters.sortedByDescending { it.chapter_number } }