[Glitch] Fix accounts' display name/bio not being set from initial state
Port 6e72faaa78
to glitch-soc
lolsob-rspec
parent
9a1015327b
commit
a3d318ec76
|
@ -122,7 +122,7 @@ const initialState = ImmutableMap();
|
|||
export default function accounts(state = initialState, action) {
|
||||
switch(action.type) {
|
||||
case STORE_HYDRATE:
|
||||
return state.merge(action.state.get('accounts'));
|
||||
return normalizeAccounts(state, Object.values(action.state.get('accounts').toJS()));
|
||||
case ACCOUNT_FETCH_SUCCESS:
|
||||
case NOTIFICATIONS_UPDATE:
|
||||
return normalizeAccount(state, action.account);
|
||||
|
|
Loading…
Reference in New Issue