From b17a6df1b945af69c26b21513030f63b6e676a6b Mon Sep 17 00:00:00 2001 From: bluepython508 <16466646+bluepython508@users.noreply.github.com> Date: Thu, 12 Feb 2026 16:31:39 +0000 Subject: [PATCH] Don't crash Waybar's status-display by stringifying pulldown tuples --- main.janet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.janet b/main.janet index 17b8a78..e4a1945 100644 --- a/main.janet +++ b/main.janet @@ -430,7 +430,7 @@ :period ">" "") " " - (string/join (map |(string ":" $) (output :tags-other))))) + (string/join (map |(string ":" $) (filter keyword? (output :tags-other)))))) (defn action/target-in [obj list dir]