fix(sidebar): lowercase section

This commit is contained in:
2026-04-30 18:09:01 +02:00
parent 32bcbbe438
commit 1c91753500
+5 -1
View File
@@ -636,7 +636,11 @@ local function view_entry(s, entry, focus_left)
local left = older_pane(s, entry)
local right = newer_pane(s, entry)
if not left and not right then
util.warning("no content for %s entry: %s", entry.section, entry.path)
util.warning(
"no content for %s entry: %s",
string.lower(entry.section),
entry.path
)
return
end