make copy of initial state, as there can be multiple instances now
This commit is contained in:
parent
720bc11aa4
commit
f95b26179f
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ export class RoomViewStore extends Store {
|
|||
super(dis);
|
||||
|
||||
// Initialise state
|
||||
this._state = INITIAL_STATE;
|
||||
this._state = Object.assign({}, INITIAL_STATE);
|
||||
}
|
||||
|
||||
_setState(newState) {
|
||||
|
|
Loading…
Reference in a new issue