From 3b845964e7bd1c6dfa409732576d2db6aa897c18 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Tue, 26 Dec 2023 09:01:47 +0100 Subject: [PATCH] fix matching for events without locale --- node.lua | 4 ++-- tile.lua | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/node.lua b/node.lua index c62876c..a5aefc7 100644 --- a/node.lua +++ b/node.lua @@ -182,7 +182,7 @@ function node.render() local talk = all_next_talks[idx] local title = talk.title - if show_language and talk.locale then + if show_language and talk.locale ~= json.null then title = title .. " (" .. talk.locale .. ")" end @@ -196,7 +196,7 @@ function node.render() if #talk.persons > 0 then local joiner = ({ de = "mit", - })[talk.locale] or "with" + })[talk.locale or ""] or "with" info_line = info_line .. " " .. joiner .. " " .. table.concat(talk.persons, ", ") end diff --git a/tile.lua b/tile.lua index 06fa03f..b6f7d41 100644 --- a/tile.lua +++ b/tile.lua @@ -192,7 +192,7 @@ local function view_next_talk(starts, ends, config, x1, y1, x2, y2) local y_start = y local title = current_talk.title - if show_language and current_talk.locale then + if show_language and current_talk.locale ~= json.null then title = title .. " (" .. current_talk.locale .. ")" end @@ -278,7 +278,7 @@ local function view_all_talks(starts, ends, config, x1, y1, x2, y2) local talk = all_next_talks[idx] local title = talk.title - if show_language and talk.locale then + if show_language and talk.locale ~= json.null then title = title .. " (" .. talk.locale .. ")" end @@ -292,7 +292,7 @@ local function view_all_talks(starts, ends, config, x1, y1, x2, y2) if show_speakers and #talk.persons > 0 then local joiner = ({ de = "mit", - })[talk.locale] or "with" + })[talk.locale or ""] or "with" info_line = info_line .. " " .. joiner .. " " .. table.concat(talk.persons, ", ") end