Properly detect thread-muted posts and set with_muted
when fetching
notifications
This commit is contained in:
parent
a1aada2454
commit
66a34b7ecf
2 changed files with 6 additions and 1 deletions
|
@ -10,6 +10,11 @@ const fetchAndUpdate = ({ store, credentials, older = false }) => {
|
|||
const args = { credentials }
|
||||
const rootState = store.rootState || store.state
|
||||
const timelineData = rootState.statuses.notifications
|
||||
const hideMutedPosts = typeof rootState.config.hideMutedPosts === 'undefined'
|
||||
? rootState.instance.hideMutedPosts
|
||||
: rootState.config.hideMutedPosts
|
||||
|
||||
args['withMuted'] = !hideMutedPosts
|
||||
|
||||
args['timeline'] = 'notifications'
|
||||
if (older) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue