mirror of
https://github.com/Kunsi/scheduled-plugin-pretalx-broadcast-tools.git
synced 2024-11-24 11:01:05 +00:00
ignore talks in *this* room if they started more than 25 minutes ago
This commit is contained in:
parent
de1f01b004
commit
f2c341183d
1 changed files with 1 additions and 1 deletions
2
tile.lua
2
tile.lua
|
@ -124,7 +124,7 @@ local function check_next_talks()
|
|||
-- to announce these.
|
||||
if talk.end_ts > time 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 and talk.start_ts > min_start then
|
||||
room_next_talks[#room_next_talks+1] = talk
|
||||
end
|
||||
all_next_talks[#all_next_talks+1] = talk
|
||||
|
|
Loading…
Reference in a new issue