mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 02:34:39 +00:00
fix(library): Only retry if it's NPE
This commit is contained in:
parent
ca982d93d1
commit
11ef447321
1 changed files with 1 additions and 1 deletions
|
@ -814,7 +814,7 @@ class LibraryPresenter(
|
|||
return combine(
|
||||
getCategories.subscribe(),
|
||||
// FIXME: Remove retry once a real solution is found
|
||||
getLibraryManga.subscribe().retry(1),
|
||||
getLibraryManga.subscribe().retry(1) { e -> e is NullPointerException },
|
||||
getPreferencesFlow(),
|
||||
preferences.removeArticles().changes(),
|
||||
fetchLibrary
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue