CommonClient: actually close the UI on /exit (#5860)

This commit is contained in:
Fabian Dill
2026-02-15 18:39:35 +01:00
committed by GitHub
parent 1de91fab67
commit 78e8082a6f

View File

@@ -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