Don't refresh when '_legacy' changes

bundle-emoji
Alex Gleason 2021-03-25 23:03:58 -05:00
rodzic c7c0c41ce6
commit 41c7612b47
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

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