mirror of
https://github.com/Kunsi/scheduled-plugin-pretalx-broadcast-tools.git
synced 2024-11-21 09:31:06 +00:00
fix room name detection for uuid usage
This commit is contained in:
parent
de084a0a6a
commit
cacf808177
1 changed files with 4 additions and 1 deletions
5
service
5
service
|
@ -207,7 +207,10 @@ def main():
|
|||
else:
|
||||
log("unknown json flavour, something is very wrong")
|
||||
|
||||
node.write_json("uuid.json", room_uuid_mapping)
|
||||
uuid_json = {}
|
||||
for name, uuid in room_uuid_mapping.items():
|
||||
uuid_json[uuid] = name
|
||||
node.write_json("uuid.json", uuid_json)
|
||||
|
||||
idle(30, event_start, event_end, event_tz)
|
||||
|
||||
|
|
Loading…
Reference in a new issue