ignore talks in *this* room if they started more than 25 minutes ago

This commit is contained in:
Franzi 2023-12-27 11:12:03 +01:00
parent de1f01b004
commit f2c341183d

View file

@ -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