-
Notifications
You must be signed in to change notification settings - Fork 553
fix: updated favourites on event navigation & continuous topic api calls #1707
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
app/src/main/java/org/fossasia/openevent/general/event/EventDao.kt
Outdated
Show resolved
Hide resolved
@iamareebjamal now getting the events from db. |
Changes:
Video (ignore the bg noise) @iamareebjamal @anhanh11001 @liveHarshit @nikit19 review please
|
.doFinally { | ||
mutableShowShimmerResults.value = false | ||
}.subscribe({ | ||
mutableShowShimmerResults.value = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WHY?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Calls the doFInally action after this Flowable signals onError or onCompleted or gets canceled by the downstream.
Means it'll keep showing the shimmer even after the success.
Part of #1689
Changes: change flowable similar events to single events.