Skip to content

Commit

Permalink
Remove client "FLASH" type from list
Browse files Browse the repository at this point in the history
FLASH is deprecated since 2021
  • Loading branch information
pielonet authored Nov 16, 2023
1 parent a8b4bec commit bd665f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbb-exporter/collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def metric_recordings_unprocessed_from_disk(self):

@staticmethod
def _get_participant_count_by_client(meetings):
p_by_c = defaultdict(int, {'HTML5': 0, 'DIAL-IN': 0, 'FLASH': 0})
p_by_c = defaultdict(int, {'HTML5': 0, 'DIAL-IN': 0})
for meeting in meetings:
if not meeting.get("attendees"):
continue
Expand Down

0 comments on commit bd665f5

Please sign in to comment.