about summary refs log tree commit diff
path: root/app/javascript/mastodon/reducers/user_lists.js
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-10-26 15:41:28 +0100
committerGitHub <noreply@github.com>2020-10-26 15:41:28 +0100
commit3678b10823a691256ad63c1c4df8dc659dfc3bc0 (patch)
tree208dbcc5e40b89f271dff4f5138eebb320b6ef8f /app/javascript/mastodon/reducers/user_lists.js
parent1f945e73909c915095f7235c99ef3544deb025e0 (diff)
Fix follow request notifications (#15048)
Diffstat (limited to 'app/javascript/mastodon/reducers/user_lists.js')
-rw-r--r--app/javascript/mastodon/reducers/user_lists.js20
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) => {