fix NPE: apparently otherMember can be undefined as well as null on LL
This commit is contained in:
parent
94c7ae2bf5
commit
c410a737d9
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ function _isConfCallRoom(room, myUserId, conferenceHandler) {
|
|||
}
|
||||
|
||||
const otherMember = getOnlyOtherMember(room, myUserId);
|
||||
if (otherMember === null) {
|
||||
if (!otherMember) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue