Skip to content
Snippets Groups Projects
Commit 3aa9cb88 authored by David Huss's avatar David Huss :speech_balloon:
Browse files

Fix bug in BBBServer

parent ba151407
Branches
No related tags found
No related merge requests found
...@@ -208,7 +208,7 @@ class BBBServer(): ...@@ -208,7 +208,7 @@ class BBBServer():
def video_active(self) -> int: def video_active(self) -> int:
if len(self.meetings) == 0: if len(self.meetings) == 0:
return 0 return 0
return sum([m.cideo_active for m in self.meetings]) return sum([m.video_active for m in self.meetings])
@property @property
def moderators(self) -> int: def moderators(self) -> int:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment