diff options
author | ThibG <thib@sitedethib.com> | 2020-09-28 21:44:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-28 21:44:29 +0200 |
commit | 82951920f7321fefbdf0628cbb70f2f490f7b716 (patch) | |
tree | 0a2b215aca56e2b9c47b52780c358e108161ba30 /app/javascript | |
parent | 3ea65472cab256a8e89c89b3452b802473025f6b (diff) |
Fix bell button causing a brief “Cancel follow request” on locked accounts (#14896)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/reducers/relationships.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/reducers/relationships.js b/app/javascript/mastodon/reducers/relationships.js index 1d050cc63..53949258a 100644 --- a/app/javascript/mastodon/reducers/relationships.js +++ b/app/javascript/mastodon/reducers/relationships.js @@ -45,7 +45,7 @@ const initialState = ImmutableMap(); export default function relationships(state = initialState, action) { switch(action.type) { case ACCOUNT_FOLLOW_REQUEST: - return state.setIn([action.id, action.locked ? 'requested' : 'following'], true); + return state.getIn([action.id, 'following']) ? state : state.setIn([action.id, action.locked ? 'requested' : 'following'], true); case ACCOUNT_FOLLOW_FAIL: return state.setIn([action.id, action.locked ? 'requested' : 'following'], false); case ACCOUNT_UNFOLLOW_REQUEST: |