From 148b1130b1d97d79859c1692ae397f9d6c6aa60b Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Thu, 26 Dec 2024 17:14:44 +0100 Subject: [PATCH] service: fix detection of rooms with uuid --- service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service b/service index 018892d..ccb4398 100755 --- a/service +++ b/service @@ -157,7 +157,7 @@ def main(): .astimezone(event_tz) .strftime("%H:%M") ) - talk["room_uuid"] = room_uuid_mapping.get("room") + talk["room_uuid"] = room_uuid_mapping.get(talk["room"]) if talk["track"]: if talk["track"]["name"] not in tracks: tracks[talk["track"]["name"]] = talk["track"]["color"]