mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +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(
|
return combine(
|
||||||
getCategories.subscribe(),
|
getCategories.subscribe(),
|
||||||
// FIXME: Remove retry once a real solution is found
|
// FIXME: Remove retry once a real solution is found
|
||||||
getLibraryManga.subscribe().retry(1),
|
getLibraryManga.subscribe().retry(1) { e -> e is NullPointerException },
|
||||||
getPreferencesFlow(),
|
getPreferencesFlow(),
|
||||||
preferences.removeArticles().changes(),
|
preferences.removeArticles().changes(),
|
||||||
fetchLibrary
|
fetchLibrary
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue