mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
VC/Zoom: Fix 'Mute video (host)' setting
This commit is contained in:
parent
e33f6d3da1
commit
25932ed8fb
@ -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
|
||||
|
||||
@ -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'),
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user