Don't refresh when '_legacy' changes

merge-requests/451/head
Alex Gleason 4 years ago
parent c7c0c41ce6
commit 41c7612b47
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -143,10 +143,14 @@ const reload = state => {
}
};
// `me` is a user ID string
const validMe = state => {
const me = state.get('me');
return typeof me === 'string' && me !== '_legacy';
};
// `me` has changed from one valid ID to another
const userSwitched = (oldState, state) => {
const validMe = state => typeof state.get('me') === 'string';
const stillValid = validMe(oldState) && validMe(state);
const didChange = oldState.get('me') !== state.get('me');

Loading…
Cancel
Save