mirror of
https://github.com/Kunsi/scheduled-plugin-pretalx-broadcast-tools.git
synced 2025-06-30 22:58:32 +00:00
add option to use room uuid instead of room name
This commit is contained in:
parent
927adfa0da
commit
cc8bcc1233
3 changed files with 13 additions and 3 deletions
2
tile.lua
2
tile.lua
|
@ -139,7 +139,7 @@ local function check_next_talks()
|
|||
-- to announce these.
|
||||
if talk.end_ts > time and talk.start_ts > min_start then
|
||||
-- is this in *this* room, or somewhere else?
|
||||
if current_room and talk.room == current_room then
|
||||
if current_room and (talk.room == current_room or talk.room_uuid == current_room) then
|
||||
room_next_talks[#room_next_talks+1] = talk
|
||||
end
|
||||
all_next_talks[#all_next_talks+1] = talk
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue