Skip to content

Commit

Permalink
fix first notifications loaded multiple times
Browse files Browse the repository at this point in the history
closes #616
  • Loading branch information
sk22 committed Jun 27, 2023
1 parent f7c5736 commit 12adb4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ protected void doLoadData(int offset, int count){
public void onSuccess(CacheablePaginatedResponse<List<Status>> result){
if (getActivity() == null) return;
List<Status> filteredItems = filterPosts(result.items);
onDataLoaded(filteredItems, !result.items.isEmpty());
maxID=result.maxID;
onDataLoaded(filteredItems, !result.items.isEmpty());
if(result.isFromCache())
loadNewPosts();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ protected void doLoadData(int offset, int count){
public void onSuccess(PaginatedResponse<List<Notification>> result){
if(getActivity()==null)
return;
onDataLoaded(result.items.stream().filter(n->n.type!=null).collect(Collectors.toList()), !result.items.isEmpty());
maxID=result.maxID;
onDataLoaded(result.items.stream().filter(n->n.type!=null).collect(Collectors.toList()), !result.items.isEmpty());
reloadingFromCache=false;
if (getParentFragment() instanceof NotificationsFragment nf) {
nf.updateMarkAllReadButton();
Expand Down

0 comments on commit 12adb4e

Please sign in to comment.