Fix Merged Manga not refreshing

This commit is contained in:
Jobobby04 2021-09-17 16:16:59 -04:00
parent 7ffe1794d9
commit 23928d3c89

View File

@ -179,11 +179,10 @@ class MergedSource : HttpSource() {
} }
.awaitAll() .awaitAll()
.let { pairs -> .let { pairs ->
if (exception != null) {
throw exception!!
}
pairs.flatMap { it?.first.orEmpty() } to pairs.flatMap { it?.second.orEmpty() } pairs.flatMap { it?.first.orEmpty() } to pairs.flatMap { it?.second.orEmpty() }
} }
}.also {
exception?.let { throw it }
} }
} }