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