mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Fix crash on source page load error
This commit is contained in:
parent
6385c71c72
commit
71bd5fe367
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ open class BrowseSourcePresenter(
|
||||||
try {
|
try {
|
||||||
pager.requestNextPage()
|
pager.requestNextPage()
|
||||||
} catch (e: Throwable) {
|
} catch (e: Throwable) {
|
||||||
view?.onAddPageError(e)
|
withUIContext { view?.onAddPageError(e) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue