mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-20 20:13:17 +00:00
Merge pull request #4443 from pixelfed/staging
Update Notifications.vue component, fix filtering logic to prevent en…
This commit is contained in:
commit
ad88a07118
14 changed files with 6 additions and 4 deletions
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.11.8...dev)
|
## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.11.8...dev)
|
||||||
|
|
||||||
|
### Updates
|
||||||
|
- Update Notifications.vue component, fix filtering logic to prevent endless spinner ([3df9b53f](https://github.com/pixelfed/pixelfed/commit/3df9b53f))
|
||||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||||
|
|
||||||
## [v0.11.8 (2023-05-29)](https://github.com/pixelfed/pixelfed/compare/v0.11.7...v0.11.8)
|
## [v0.11.8 (2023-05-29)](https://github.com/pixelfed/pixelfed/compare/v0.11.7...v0.11.8)
|
||||||
|
|
BIN
public/js/discover.chunk.5d1455b7a1531f25.js
vendored
Normal file
BIN
public/js/discover.chunk.5d1455b7a1531f25.js
vendored
Normal file
Binary file not shown.
BIN
public/js/discover.chunk.93193c6ec9a42fc4.js
vendored
BIN
public/js/discover.chunk.93193c6ec9a42fc4.js
vendored
Binary file not shown.
BIN
public/js/discover~hashtag.bundle.0f0dea872c1b644e.js
vendored
Normal file
BIN
public/js/discover~hashtag.bundle.0f0dea872c1b644e.js
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/js/home.chunk.0e9fc41724d23244.js
vendored
Normal file
BIN
public/js/home.chunk.0e9fc41724d23244.js
vendored
Normal file
Binary file not shown.
BIN
public/js/home.chunk.5e2199ecf7058763.js
vendored
BIN
public/js/home.chunk.5e2199ecf7058763.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.7c05c9ede39712e0.js
vendored
Normal file
BIN
public/js/post.chunk.7c05c9ede39712e0.js
vendored
Normal file
Binary file not shown.
BIN
public/js/post.chunk.df55c616763e284d.js
vendored
BIN
public/js/post.chunk.df55c616763e284d.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -234,16 +234,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