mirror of https://github.com/vector-im/riot-web
Remove redundant room_id
parent
f52035f3cd
commit
ac0f2f79d1
|
@ -140,12 +140,10 @@ class RoomViewStore extends Store {
|
|||
MatrixClientPeg.get().joinRoom(this._state.roomId, payload.opts).done(() => {
|
||||
dis.dispatch({
|
||||
action: 'joined_room',
|
||||
room_id: this._state.roomId,
|
||||
});
|
||||
}, (err) => {
|
||||
dis.dispatch({
|
||||
action: 'join_room_error',
|
||||
room_id: this._state.roomId,
|
||||
err: err,
|
||||
});
|
||||
const msg = err.message ? err.message : JSON.stringify(err);
|
||||
|
|
Loading…
Reference in New Issue