From 17aef9463aaf8d4b0385c2832f257ab5735cf78f Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 30 Sep 2023 16:06:41 +0200 Subject: [PATCH] all_talks: only show speakers if there are any --- tile.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tile.lua b/tile.lua index fce73ad..016c94c 100644 --- a/tile.lua +++ b/tile.lua @@ -274,7 +274,7 @@ local function view_all_talks(starts, ends, config, x1, y1, x2, y2) local info_line = talk.room - if show_speakers and #talk.persons then + if show_speakers and #talk.persons > 0 then local joiner = ({ de = "mit", })[talk.locale] or "with"