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

Fix regression bug with 0 meetings

parent 84322632
No related branches found
No related tags found
No related merge requests found
...@@ -225,7 +225,7 @@ def sum_meetings(config: Config, meetings: Optional[XmlDictConfig]) -> Optiona ...@@ -225,7 +225,7 @@ def sum_meetings(config: Config, meetings: Optional[XmlDictConfig]) -> Optiona
active_endpoints = [m for m in meetings if m != ["unreachable"]] active_endpoints = [m for m in meetings if m != ["unreachable"]]
if len(active_endpoints) == 0: if len(active_endpoints) == 0:
return None return config, None
summed_endpoint = [] summed_endpoint = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment