mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
Filter out blocked scanlators from updates section
This commit is contained in:
parent
66f77aafc0
commit
bbef22536c
1 changed files with 5 additions and 1 deletions
|
@ -198,7 +198,11 @@ class RecentsPresenter(
|
|||
}
|
||||
.mapNotNull { entry ->
|
||||
val manga = entry.value.first().manga
|
||||
val chapters = entry.value.map(MangaChapter::chapter)
|
||||
val chapters = chapterFilter.filterChaptersByScanlators(
|
||||
entry.value.map(MangaChapter::chapter),
|
||||
manga,
|
||||
)
|
||||
if (chapters.isEmpty()) { return@mapNotNull null }
|
||||
val firstChapter: Chapter
|
||||
var sortedChapters: MutableList<Chapter>
|
||||
val existingItem = recentItems.find {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue