mirror of
https://github.com/mastodon/mastodon-android.git
synced 2025-02-02 11:46:50 +01:00
Fix notifications
This commit is contained in:
parent
a0cbf0fa31
commit
fd3613109d
@ -90,7 +90,7 @@ public class NotificationsListFragment extends BaseStatusListFragment<Notificati
|
||||
public void onSuccess(List<Notification> result){
|
||||
if(refreshing)
|
||||
relationships.clear();
|
||||
onDataLoaded(result, !result.isEmpty());
|
||||
onDataLoaded(result.stream().filter(n->n.type!=null).collect(Collectors.toList()), !result.isEmpty());
|
||||
Set<String> needRelationships=result.stream()
|
||||
.filter(ntf->ntf.status==null && !relationships.containsKey(ntf.account.id))
|
||||
.map(ntf->ntf.account.id)
|
||||
|
@ -12,7 +12,7 @@ import java.time.Instant;
|
||||
public class Notification extends BaseModel implements DisplayItemsParent{
|
||||
@RequiredField
|
||||
public String id;
|
||||
@RequiredField
|
||||
// @RequiredField
|
||||
public Type type;
|
||||
@RequiredField
|
||||
public Instant createdAt;
|
||||
|
Loading…
x
Reference in New Issue
Block a user