fixed VideoService.isLocked error
This commit is contained in:
parent
e51a09de0f
commit
cdc6033c45
@ -106,7 +106,8 @@ class VideoService {
|
||||
|
||||
isLocked() {
|
||||
const m = Meetings.findOne({ meetingId: Auth.meetingID });
|
||||
return m.lockSettingsProp ? m.lockSettingsProp.disableCam : false;
|
||||
const lockSetings = m.lockSettingsProp || {};
|
||||
return lockSetings ? lockSetings.disableCam : false;
|
||||
}
|
||||
|
||||
userId() {
|
||||
|
Loading…
Reference in New Issue
Block a user