Fix exception thrown when Batoto search is empty

This commit is contained in:
len 2016-07-16 17:25:22 +02:00
parent e16bf0698e
commit f7bb356abd
3 changed files with 6 additions and 5 deletions

View File

@ -73,7 +73,7 @@ class Batoto(context: Context, override val id: Int) : ParsedOnlineSource(contex
}
}
override fun popularMangaSelector() = "tr:not([id]):not([class])"
override fun popularMangaSelector() = "tr:has(a)"
override fun popularMangaFromElement(element: Element, manga: Manga) {
element.select("a[href^=http://bato.to]").first().let {

View File

@ -36,9 +36,11 @@ class CatalogueAdapter(val fragment: CatalogueFragment) : FlexibleAdapter<Catalo
* @param list the list to add.
*/
fun addItems(list: List<Manga>) {
val sizeBeforeAdding = mItems.size
mItems.addAll(list)
notifyItemRangeInserted(sizeBeforeAdding, list.size)
if (list.isNotEmpty()) {
val sizeBeforeAdding = mItems.size
mItems.addAll(list)
notifyItemRangeInserted(sizeBeforeAdding, list.size)
}
}
/**

View File

@ -229,7 +229,6 @@ class CataloguePresenter : BasePresenter<CatalogueFragment>() {
source.fetchSearchManga(nextMangasPage, query)
return observable.subscribeOn(Schedulers.io())
.doOnNext { if (it.mangas.isEmpty()) throw Exception("Empty page") }
.doOnNext { lastMangasPage = it }
.flatMap { Observable.from(it.mangas) }
.map { networkToLocalManga(it) }