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());
});
};