about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/accounts_counters.js
diff options
context:
space:
mode:
authorcwm <chriswmartin@protonmail.com>2017-12-08 20:13:08 -0600
committercwm <chriswmartin@protonmail.com>2017-12-08 20:13:08 -0600
commit47157e07b25f80aa9d2f90591bb59cf32cf593be (patch)
tree9cbaa6dabd362e3390fa1b1085108d6f1a8e5dd5 /app/javascript/flavours/glitch/reducers/accounts_counters.js
parentf44c8fd130e51b5d8f707be8fd53ccc81211eb73 (diff)
merged tootsuite pr #5811 into glitch flavour
Diffstat (limited to 'app/javascript/flavours/glitch/reducers/accounts_counters.js')
-rw-r--r--app/javascript/flavours/glitch/reducers/accounts_counters.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/reducers/accounts_counters.js b/app/javascript/flavours/glitch/reducers/accounts_counters.js
index a9aebd26f..0fd985a08 100644
--- a/app/javascript/flavours/glitch/reducers/accounts_counters.js
+++ b/app/javascript/flavours/glitch/reducers/accounts_counters.js
@@ -45,6 +45,10 @@ import {
   FAVOURITED_STATUSES_FETCH_SUCCESS,
   FAVOURITED_STATUSES_EXPAND_SUCCESS,
 } from 'flavours/glitch/actions/favourites';
+import {
+  LIST_ACCOUNTS_FETCH_SUCCESS,
+  LIST_EDITOR_SUGGESTIONS_READY,
+} from 'flavours/glitch/actions/lists';
 import { STORE_HYDRATE } from 'flavours/glitch/actions/store';
 import { Map as ImmutableMap, fromJS } from 'immutable';
 
@@ -106,6 +110,8 @@ export default function accountsCounters(state = initialState, action) {
   case BLOCKS_EXPAND_SUCCESS:
   case MUTES_FETCH_SUCCESS:
   case MUTES_EXPAND_SUCCESS:
+  case LIST_ACCOUNTS_FETCH_SUCCESS:
+  case LIST_EDITOR_SUGGESTIONS_READY:
     return action.accounts ? normalizeAccounts(state, action.accounts) : state;
   case NOTIFICATIONS_REFRESH_SUCCESS:
   case NOTIFICATIONS_EXPAND_SUCCESS: