From 7e3986ae686977dd4a4dc6bb3080f0ce2fadb588 Mon Sep 17 00:00:00 2001 From: teknium1 <127238744+teknium1@users.noreply.github.com> Date: Wed, 8 Jul 2026 06:33:19 -0700 Subject: [PATCH] fix(tui): route /compress and /compact past the slash worker to command.dispatch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ported from #60834 (same author) — pending-input routing so clients that fail the slash.exec->dispatch fallback still reach the new compress handler. --- tui_gateway/server.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tui_gateway/server.py b/tui_gateway/server.py index 29bf3315ef5..8357de83dae 100644 --- a/tui_gateway/server.py +++ b/tui_gateway/server.py @@ -11611,6 +11611,8 @@ _PENDING_INPUT_COMMANDS: frozenset[str] = frozenset( "moa", "undo", "learn", + "compress", + "compact", } )