mirror of
https://github.com/Kunsi/scheduled-plugin-pretalx-broadcast-tools.git
synced 2024-11-22 01:51:03 +00:00
all_talks: only show speakers if there are any
This commit is contained in:
parent
429377564b
commit
17aef9463a
1 changed files with 1 additions and 1 deletions
2
tile.lua
2
tile.lua
|
@ -274,7 +274,7 @@ local function view_all_talks(starts, ends, config, x1, y1, x2, y2)
|
||||||
|
|
||||||
local info_line = talk.room
|
local info_line = talk.room
|
||||||
|
|
||||||
if show_speakers and #talk.persons then
|
if show_speakers and #talk.persons > 0 then
|
||||||
local joiner = ({
|
local joiner = ({
|
||||||
de = "mit",
|
de = "mit",
|
||||||
})[talk.locale] or "with"
|
})[talk.locale] or "with"
|
||||||
|
|
Loading…
Reference in a new issue