Filtered comikey chapters (#8888)
This commit is contained in:
parent
7d67b98943
commit
465b6e05af
|
@ -6,7 +6,7 @@ ext {
|
|||
extName = 'MangaDex'
|
||||
pkgNameSuffix = 'all.mangadex'
|
||||
extClass = '.MangaDexFactory'
|
||||
extVersionCode = 129
|
||||
extVersionCode = 130
|
||||
libVersion = '1.2'
|
||||
containsNsfw = true
|
||||
}
|
||||
|
|
|
@ -351,7 +351,8 @@ abstract class MangaDex(override val lang: String, val dexLang: String) :
|
|||
val now = Date().time
|
||||
|
||||
return chapterListResults.map { helper.createChapter(it) }
|
||||
.filter { it.date_upload <= now && "MangaPlus" != it.scanlator }
|
||||
.filter { it.date_upload <= now && "MangaPlus" != it.scanlator
|
||||
&& "Comikey" != it.scanlator}
|
||||
} catch (e: Exception) {
|
||||
Log.e("MangaDex", "error parsing chapter list", e)
|
||||
throw(e)
|
||||
|
|
Loading…
Reference in New Issue