mirror of https://github.com/vector-im/riot-web
Merge pull request #2584 from matrix-org/bwindels/fixrelogincustomtags
Fix: logging in again breaks CustomRoomTagStorepull/21833/head
commit
80731a9de4
|
@ -48,7 +48,7 @@ class CustomRoomTagStore extends EventEmitter {
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
// Initialise state
|
// Initialise state
|
||||||
this._state = {tags: this._getUpdatedTags()};
|
this._state = {tags: {}};
|
||||||
|
|
||||||
this._roomListStoreToken = RoomListStore.addListener(() => {
|
this._roomListStoreToken = RoomListStore.addListener(() => {
|
||||||
this._setState({tags: this._getUpdatedTags()});
|
this._setState({tags: this._getUpdatedTags()});
|
||||||
|
@ -113,7 +113,8 @@ class CustomRoomTagStore extends EventEmitter {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'on_logged_out': {
|
case 'on_logged_out': {
|
||||||
this._state = {};
|
// we assume to always have a tags object in the state
|
||||||
|
this._state = {tags: {}};
|
||||||
if (this._roomListStoreToken) {
|
if (this._roomListStoreToken) {
|
||||||
this._roomListStoreToken.remove();
|
this._roomListStoreToken.remove();
|
||||||
this._roomListStoreToken = null;
|
this._roomListStoreToken = null;
|
||||||
|
|
Loading…
Reference in New Issue