1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

make copy of initial state, as there can be multiple instances now

This commit is contained in:
Bruno Windels
2018-11-07 16:30:02 +01:00
parent 720bc11aa4
commit f95b26179f

View File

@@ -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) {