VC/Zoom: Fix 'Mute video (host)' setting

This commit is contained in:
Tomas Roun 2022-12-02 13:27:55 +01:00 committed by Adrian
parent e33f6d3da1
commit 25932ed8fb
3 changed files with 6 additions and 2 deletions

View File

@ -11,6 +11,10 @@
## Changelog
### 3.2.2
- Correctly show current "Mute video (host)" status when editing zoom meeting
### 3.2.1
- Do not break Zoom meetings that require registration when cloning or attaching to another event

View File

@ -418,7 +418,7 @@ class ZoomPlugin(VCPluginMixin, IndicoPlugin):
'description': zoom_meeting.get('agenda', ''),
'zoom_id': zoom_meeting['id'],
'password': zoom_meeting['password'],
'mute_host_video': zoom_meeting['settings']['host_video'],
'mute_host_video': not zoom_meeting['settings']['host_video'],
# these options will be empty for webinars
'mute_audio': zoom_meeting['settings'].get('mute_upon_entry'),

View File

@ -1,6 +1,6 @@
[metadata]
name = indico-plugin-vc-zoom
version = 3.2.1
version = 3.2.2
description = Zoom video-conferencing plugin for Indico
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM