We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1ba69f commit 46572aeCopy full SHA for 46572ae
src/VectorConferenceHandler.js
@@ -44,6 +44,7 @@ ConferenceCall.prototype.setup = function() {
44
// looking for a 1:1 room with this conf user ID!)
45
var call = Matrix.createNewMatrixCall(self.client, room.roomId);
46
call.confUserId = self.confUserId;
47
+ call.groupRoomId = self.groupRoomId;
48
return call;
49
});
50
};
src/components/structures/LeftPanel.js
@@ -79,7 +79,7 @@ var LeftPanel = React.createClass({
79
if (call) {
80
dis.dispatch({
81
action: 'view_room',
82
- room_id: call.roomId,
+ room_id: call.groupRoomId || call.roomId,
83
84
}
85
},
0 commit comments