diff options
author | ThibG <thib@sitedethib.com> | 2020-10-26 15:41:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 15:41:28 +0100 |
commit | 3678b10823a691256ad63c1c4df8dc659dfc3bc0 (patch) | |
tree | 208dbcc5e40b89f271dff4f5138eebb320b6ef8f /app | |
parent | 1f945e73909c915095f7235c99ef3544deb025e0 (diff) |
Fix follow request notifications (#15048)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/reducers/user_lists.js | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/app/javascript/mastodon/reducers/user_lists.js b/app/javascript/mastodon/reducers/user_lists.js index 8165952a7..10aaa2d68 100644 --- a/app/javascript/mastodon/reducers/user_lists.js +++ b/app/javascript/mastodon/reducers/user_lists.js @@ -53,14 +53,20 @@ import { } from 'mastodon/actions/directory'; import { Map as ImmutableMap, List as ImmutableList } from 'immutable'; +const initialListState = ImmutableMap({ + next: null, + isLoading: false, + items: ImmutableList(), +}); + const initialState = ImmutableMap({ - followers: ImmutableMap(), - following: ImmutableMap(), - reblogged_by: ImmutableMap(), - favourited_by: ImmutableMap(), - follow_requests: ImmutableMap(), - blocks: ImmutableMap(), - mutes: ImmutableMap(), + followers: initialListState, + following: initialListState, + reblogged_by: initialListState, + favourited_by: initialListState, + follow_requests: initialListState, + blocks: initialListState, + mutes: initialListState, }); const normalizeList = (state, path, accounts, next) => { |