diff options
| author | Henry Jameson <me@hjkos.com> | 2023-11-16 19:26:18 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2023-11-16 19:26:18 +0200 |
| commit | aad3225d25460170a8dd48f8ffcbc63f99a28b7f (patch) | |
| tree | 08fbec0e62c930d3ff3a5e72af84bb0c94c89a2a /src/services/notifications_fetcher | |
| parent | fffa7a4f4a7cb5659e830435508497c073b66160 (diff) | |
refactored notifications into their own module separate from statuses (WIP)
Diffstat (limited to 'src/services/notifications_fetcher')
| -rw-r--r-- | src/services/notifications_fetcher/notifications_fetcher.service.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/notifications_fetcher/notifications_fetcher.service.js b/src/services/notifications_fetcher/notifications_fetcher.service.js index 6c247210..3c280b74 100644 --- a/src/services/notifications_fetcher/notifications_fetcher.service.js +++ b/src/services/notifications_fetcher/notifications_fetcher.service.js @@ -21,7 +21,7 @@ const fetchAndUpdate = ({ store, credentials, older = false, since }) => { const args = { credentials } const { getters } = store const rootState = store.rootState || store.state - const timelineData = rootState.statuses.notifications + const timelineData = rootState.notifications const hideMutedPosts = getters.mergedConfig.hideMutedPosts args.includeTypes = mastoApiNotificationTypes |
