mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-26 22:20:24 +00:00
fix loading spinner for bookmarks and continue watching
This commit is contained in:
parent
ceba0ae9d2
commit
e3141ddd0c
1 changed files with 2 additions and 0 deletions
|
@ -100,9 +100,11 @@ public class EventsListFragment extends BrowseFragment implements SearchView.OnQ
|
|||
if (conferenceId == BOOKMARKS_LIST_ID) {
|
||||
listener.setToolbarTitle(resources.getString(R.string.bookmarks));
|
||||
getViewModel().getBookmarkedEvents().observe(this, listObserver);
|
||||
setLoadingOverlayVisibility(false);
|
||||
} else if (conferenceId == IN_PROGRESS_LIST_ID) {
|
||||
listener.setToolbarTitle(resources.getString(R.string.continue_watching));
|
||||
getViewModel().getInProgressEvents().observe(this, listObserver);
|
||||
setLoadingOverlayVisibility(false);
|
||||
} else {
|
||||
{
|
||||
getViewModel().getConference(conferenceId).observe(this, conference -> {
|
||||
|
|
Loading…
Reference in a new issue