Merge pull request #4444 from pixelfed/staging

Staging
This commit is contained in:
daniel 2023-06-02 05:37:29 -06:00 committed by GitHub
commit 97ce98b234
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 4 additions and 4 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/js/home.chunk.09c05d3c35a0e616.js vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
public/js/manifest.js vendored

Binary file not shown.

BIN
public/js/post.chunk.7030c12e2ba2c9cd.js vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -301,16 +301,16 @@
return; return;
} }
let data = res.data.filter(n => { let data = res.data.filter(n => {
if(n.type == 'share' && !n.status) { if(n.type == 'share' && (!n.status || !n.account)) {
return false; return false;
} }
if(n.type == 'comment' && !n.status) { if(n.type == 'comment' && (!n.status || !n.account)) {
return false; return false;
} }
if(n.type == 'mention' && !n.status) { if(n.type == 'mention' && (!n.status || !n.account)) {
return false; return false;
} }
if(n.type == 'favourite' && !n.status) { if(n.type == 'favourite' && (!n.status || !n.account)) {
return false; return false;
} }
if(n.type == 'follow' && !n.account) { if(n.type == 'follow' && !n.account) {