Don't refresh when '_legacy' changes

This commit is contained in:
Alex Gleason 2021-03-25 23:03:58 -05:00
parent c7c0c41ce6
commit 41c7612b47
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 6 additions and 2 deletions

View File

@ -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');