mirror of https://github.com/vector-im/riot-web
Set state from dispatch payload unconditionally
As apparently doing it confitionally is badpull/21833/head
parent
03f4f269ce
commit
f52035f3cd
|
@ -158,21 +158,17 @@ class RoomViewStore extends Store {
|
|||
}
|
||||
|
||||
_joinedRoom(payload) {
|
||||
if (payload.room_id === this._state.roomId) {
|
||||
this._setState({
|
||||
joining: false,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
_joinRoomError(payload) {
|
||||
if (payload.room_id === this._state.roomId) {
|
||||
this._setState({
|
||||
joining: false,
|
||||
joinError: payload.err,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
reset() {
|
||||
this._state = Object.assign({}, INITIAL_STATE);
|
||||
|
|
Loading…
Reference in New Issue