fix: connect to a conference possible after leaving a conference

This commit is contained in:
henne 2020-12-26 19:13:45 +01:00
parent b4581495cb
commit 7b49de97e9
1 changed files with 3 additions and 0 deletions

View File

@ -366,6 +366,9 @@ function leave() {
isJoined = false;
$('#room').hide();
$('#room-selector').show();
for(let i in localTracks) {
room.removeTrack(localTracks[i]);
}
}
function updateParticipantList() {