mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-19 04:51:27 +00:00
commit
97ce98b234
13 changed files with 4 additions and 4 deletions
BIN
public/js/discover.chunk.3bf28b9cb8e2b43c.js
vendored
Normal file
BIN
public/js/discover.chunk.3bf28b9cb8e2b43c.js
vendored
Normal file
Binary file not shown.
BIN
public/js/discover.chunk.5d1455b7a1531f25.js
vendored
BIN
public/js/discover.chunk.5d1455b7a1531f25.js
vendored
Binary file not shown.
BIN
public/js/discover~hashtag.bundle.0c6a732dd741a483.js
vendored
Normal file
BIN
public/js/discover~hashtag.bundle.0c6a732dd741a483.js
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/js/home.chunk.09c05d3c35a0e616.js
vendored
Normal file
BIN
public/js/home.chunk.09c05d3c35a0e616.js
vendored
Normal file
Binary file not shown.
BIN
public/js/home.chunk.0e9fc41724d23244.js
vendored
BIN
public/js/home.chunk.0e9fc41724d23244.js
vendored
Binary file not shown.
BIN
public/js/manifest.js
vendored
BIN
public/js/manifest.js
vendored
Binary file not shown.
BIN
public/js/post.chunk.7030c12e2ba2c9cd.js
vendored
Normal file
BIN
public/js/post.chunk.7030c12e2ba2c9cd.js
vendored
Normal file
Binary file not shown.
BIN
public/js/post.chunk.7c05c9ede39712e0.js
vendored
BIN
public/js/post.chunk.7c05c9ede39712e0.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue