mirror of
https://github.com/accelforce/Yuito
synced 2025-01-07 21:33:12 +01:00
fix crash in TimelineFragment (#1086)
This commit is contained in:
parent
3748d75d34
commit
ffcc294107
@ -467,17 +467,17 @@ public class TimelineFragment extends SFragment implements
|
|||||||
removeAllByAccountId(id);
|
removeAllByAccountId(id);
|
||||||
}
|
}
|
||||||
} else if (event instanceof BlockEvent) {
|
} else if (event instanceof BlockEvent) {
|
||||||
if (kind != Kind.USER && kind != Kind.USER_WITH_REPLIES) {
|
if (kind != Kind.USER && kind != Kind.USER_WITH_REPLIES && kind != Kind.USER_PINNED) {
|
||||||
String id = ((BlockEvent) event).getAccountId();
|
String id = ((BlockEvent) event).getAccountId();
|
||||||
removeAllByAccountId(id);
|
removeAllByAccountId(id);
|
||||||
}
|
}
|
||||||
} else if (event instanceof MuteEvent) {
|
} else if (event instanceof MuteEvent) {
|
||||||
if (kind != Kind.USER && kind != Kind.USER_WITH_REPLIES) {
|
if (kind != Kind.USER && kind != Kind.USER_WITH_REPLIES && kind != Kind.USER_PINNED) {
|
||||||
String id = ((MuteEvent) event).getAccountId();
|
String id = ((MuteEvent) event).getAccountId();
|
||||||
removeAllByAccountId(id);
|
removeAllByAccountId(id);
|
||||||
}
|
}
|
||||||
} else if (event instanceof StatusDeletedEvent) {
|
} else if (event instanceof StatusDeletedEvent) {
|
||||||
if (kind != Kind.USER && kind != Kind.USER_WITH_REPLIES) {
|
if (kind != Kind.USER && kind != Kind.USER_WITH_REPLIES && kind != Kind.USER_PINNED) {
|
||||||
String id = ((StatusDeletedEvent) event).getStatusId();
|
String id = ((StatusDeletedEvent) event).getStatusId();
|
||||||
deleteStatusById(id);
|
deleteStatusById(id);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user