mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 17:39:59 +00:00
parent
6f19d54586
commit
ce149e4cb4
1 changed files with 6 additions and 1 deletions
|
@ -75,7 +75,12 @@ function groupItems(items: mastodon.v1.Notification[]): NotificationSlot[] {
|
|||
}
|
||||
return
|
||||
}
|
||||
else if (group.length && group[0].status && (group[0].type === 'reblog' || group[0].type === 'favourite')) {
|
||||
else if (group.length && (group[0].type === 'reblog' || group[0].type === 'favourite')) {
|
||||
if (!group[0].status) {
|
||||
// Ignore favourite or reblog if status is null, sometimes the API is sending these
|
||||
// notifications
|
||||
return
|
||||
}
|
||||
// All notifications in these group are reblogs or favourites of the same status
|
||||
const likes: GroupedAccountLike[] = []
|
||||
for (const notification of group) {
|
||||
|
|
Loading…
Reference in a new issue