aboutsummaryrefslogtreecommitdiff
path: root/src/services/notifications_fetcher/notifications_fetcher.service.js
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2020-05-01 14:41:00 +0000
committerShpuld Shpludson <shp@cock.li>2020-05-01 14:41:00 +0000
commit790b8555dc0911ec2d6f2c2f0ed5e2506bc462e7 (patch)
tree89d6e9540cba38ce45937444daf7eae323e63fea /src/services/notifications_fetcher/notifications_fetcher.service.js
parentdea7e2f6acd06839c89cd4a14a101ec162ca4e58 (diff)
parent02c8a9e3143f2b12f44d24f307e2718dec22987b (diff)
Merge branch 'fix/remove-with_move-param' into 'develop'
Remove with_move param See merge request pleroma/pleroma-fe!1094
Diffstat (limited to 'src/services/notifications_fetcher/notifications_fetcher.service.js')
-rw-r--r--src/services/notifications_fetcher/notifications_fetcher.service.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/services/notifications_fetcher/notifications_fetcher.service.js b/src/services/notifications_fetcher/notifications_fetcher.service.js
index 864e32f8..64499a1b 100644
--- a/src/services/notifications_fetcher/notifications_fetcher.service.js
+++ b/src/services/notifications_fetcher/notifications_fetcher.service.js
@@ -11,12 +11,9 @@ const fetchAndUpdate = ({ store, credentials, older = false }) => {
const rootState = store.rootState || store.state
const timelineData = rootState.statuses.notifications
const hideMutedPosts = getters.mergedConfig.hideMutedPosts
- const allowFollowingMove = rootState.users.currentUser.allow_following_move
args['withMuted'] = !hideMutedPosts
- args['withMove'] = !allowFollowingMove
-
args['timeline'] = 'notifications'
if (older) {
if (timelineData.minId !== Number.POSITIVE_INFINITY) {