You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-08-07 21:23:00 +03:00
fix the lint fix
This commit is contained in:
@@ -50,7 +50,7 @@ module.exports = class RestSession {
|
||||
|
||||
async join(roomIdOrAlias) {
|
||||
this.log.step(`joins ${roomIdOrAlias}`);
|
||||
const roomId = await this._post(`/join/${encodeURIComponent(roomIdOrAlias)}`).room_id;
|
||||
const roomId = (await this._post(`/join/${encodeURIComponent(roomIdOrAlias)}`)).room_id;
|
||||
this.log.done();
|
||||
const room = new RestRoom(this, roomId, this.log);
|
||||
this._rooms[roomId] = room;
|
||||
@@ -86,7 +86,7 @@ module.exports = class RestSession {
|
||||
body.topic = options.topic;
|
||||
}
|
||||
|
||||
const roomId = await this._post(`/createRoom`, body).room_id;
|
||||
const roomId = (await this._post(`/createRoom`, body)).room_id;
|
||||
this.log.done();
|
||||
return new RestRoom(this, roomId, this.log);
|
||||
}
|
||||
|
Reference in New Issue
Block a user