fix the lint fix

pull/21833/head
Bruno Windels 2019-10-10 12:12:13 +02:00
parent 4b9a29cb60
commit 15bbf3a999
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ module.exports = class RestSession {
async join(roomIdOrAlias) { async join(roomIdOrAlias) {
this.log.step(`joins ${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(); this.log.done();
const room = new RestRoom(this, roomId, this.log); const room = new RestRoom(this, roomId, this.log);
this._rooms[roomId] = room; this._rooms[roomId] = room;
@ -86,7 +86,7 @@ module.exports = class RestSession {
body.topic = options.topic; 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(); this.log.done();
return new RestRoom(this, roomId, this.log); return new RestRoom(this, roomId, this.log);
} }