Remove redundant room_id
This commit is contained in:
parent
f52035f3cd
commit
ac0f2f79d1
1 changed files with 0 additions and 2 deletions
|
@ -140,12 +140,10 @@ class RoomViewStore extends Store {
|
||||||
MatrixClientPeg.get().joinRoom(this._state.roomId, payload.opts).done(() => {
|
MatrixClientPeg.get().joinRoom(this._state.roomId, payload.opts).done(() => {
|
||||||
dis.dispatch({
|
dis.dispatch({
|
||||||
action: 'joined_room',
|
action: 'joined_room',
|
||||||
room_id: this._state.roomId,
|
|
||||||
});
|
});
|
||||||
}, (err) => {
|
}, (err) => {
|
||||||
dis.dispatch({
|
dis.dispatch({
|
||||||
action: 'join_room_error',
|
action: 'join_room_error',
|
||||||
room_id: this._state.roomId,
|
|
||||||
err: err,
|
err: err,
|
||||||
});
|
});
|
||||||
const msg = err.message ? err.message : JSON.stringify(err);
|
const msg = err.message ? err.message : JSON.stringify(err);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue