From 1c91753500f35104539ae2a3f104daedcf9f8c26 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Thu, 30 Apr 2026 18:09:01 +0200 Subject: [PATCH] fix(sidebar): lowercase section --- lua/git/sidebar.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/git/sidebar.lua b/lua/git/sidebar.lua index d8be7ce..6591db4 100644 --- a/lua/git/sidebar.lua +++ b/lua/git/sidebar.lua @@ -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