video, user-list: remove obsolete connectionStatus from getUserCount

This commit is contained in:
prlanzarin 2021-03-16 20:34:25 +00:00
parent 0a0a4b4915
commit e8a8deb006

View File

@ -210,7 +210,7 @@ const getUsers = () => {
};
const getUserCount = () => {
return Users.find({ meetingId: Auth.meetingID, connectionStatus: 'online' }).count();
return Users.find({ meetingId: Auth.meetingID }).count();
};
const hasBreakoutRoom = () => Breakouts.find({ parentMeetingId: Auth.meetingID },