From 3f2c40960f2509a3fc831055bf7b709f0abd7db8 Mon Sep 17 00:00:00 2001 From: bluepython508 <16466646+bluepython508@users.noreply.github.com> Date: Thu, 3 Sep 2026 17:36:06 +0100 Subject: [PATCH] Fix crashes on bad keybinds This is a bandaid, but the server surviving is more important --- main.janet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.janet b/main.janet index e27601c..8cb4958 100644 --- a/main.janet +++ b/main.janet @@ -288,7 +288,7 @@ (seat/focus seat window)) (when-let [[binding action] (seat :pending-action)] - (action seat binding)) + (protect (action seat binding))) (seat/focus seat nil))