mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update Notifications.vue component, fix filtering logic to prevent endless spinner
This commit is contained in:
parent
9c0d0a31f2
commit
3df9b53f4e
1 changed files with 4 additions and 4 deletions
|
@ -234,16 +234,16 @@
|
|||
return;
|
||||
}
|
||||
let data = res.data.filter(n => {
|
||||
if(n.type == 'share' && !n.status) {
|
||||
if(n.type == 'share' && (!n.status || !n.account)) {
|
||||
return false;
|
||||
}
|
||||
if(n.type == 'comment' && !n.status) {
|
||||
if(n.type == 'comment' && (!n.status || !n.account)) {
|
||||
return false;
|
||||
}
|
||||
if(n.type == 'mention' && !n.status) {
|
||||
if(n.type == 'mention' && (!n.status || !n.account)) {
|
||||
return false;
|
||||
}
|
||||
if(n.type == 'favourite' && !n.status) {
|
||||
if(n.type == 'favourite' && (!n.status || !n.account)) {
|
||||
return false;
|
||||
}
|
||||
if(n.type == 'follow' && !n.account) {
|
||||
|
|
Loading…
Reference in a new issue