mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
VC/Zoom: Fix rescheduling breaks
This commit is contained in:
parent
66ddab6f99
commit
f59e20b393
@ -519,7 +519,7 @@ class ZoomPlugin(VCPluginMixin, IndicoPlugin):
|
||||
return {principal_from_identifier(vc_room.data['host']).email}
|
||||
|
||||
def _check_meetings(self, sender, obj, **kwargs):
|
||||
zoom_rooms = [room.vc_room for room in obj.vc_room_associations if room.vc_room.type == 'zoom']
|
||||
zoom_rooms = [ass.vc_room for ass in getattr(obj, 'vc_room_associations', []) if ass.vc_room.type == 'zoom']
|
||||
if not zoom_rooms:
|
||||
return
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user