Minor cleanup

This commit is contained in:
Jobobby04 2021-12-11 14:58:23 -05:00
parent 8dad132509
commit 4e9fe9790b
2 changed files with 2 additions and 2 deletions

View File

@ -101,6 +101,6 @@ class MangaHandler(
.flatMap { it.chapters.values } .flatMap { it.chapters.values }
.map { it.chapter } .map { it.chapter }
} }
.getOrDefault(emptyList()) .getOrElse { emptyList() }
} }
} }