From 78e8082a6fa1d67c639e49e7564f5f6bfe6e9aa5 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 15 Feb 2026 18:39:35 +0100 Subject: [PATCH] CommonClient: actually close the UI on /exit (#5860) --- CommonClient.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CommonClient.py b/CommonClient.py index 1111adb080..c367bd47ee 100755 --- a/CommonClient.py +++ b/CommonClient.py @@ -65,6 +65,8 @@ class ClientCommandProcessor(CommandProcessor): def _cmd_exit(self) -> bool: """Close connections and client""" + if self.ctx.ui: + self.ctx.ui.stop() self.ctx.exit_event.set() return True