From f2c341183d4140d584b517e30f8677c6e4146b6d Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Wed, 27 Dec 2023 11:12:03 +0100 Subject: [PATCH] ignore talks in *this* room if they started more than 25 minutes ago --- tile.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tile.lua b/tile.lua index 20f43c6..411cb32 100644 --- a/tile.lua +++ b/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