1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

pass in userId with room in test

This commit is contained in:
Bruno Windels
2018-08-02 11:40:25 +02:00
parent 0dd860242a
commit b9bbb7ee16
2 changed files with 9 additions and 8 deletions

View File

@@ -84,7 +84,7 @@ ConferenceCall.prototype._getConferenceUserRoom = function() {
preset: "private_chat",
invite: [this.confUserId]
}).then(function(res) {
return new Room(res.room_id);
return new Room(res.room_id, client.getUserId());
});
};