Skip to main content

max / makenotwork

Fix mnw-cli TUI: add channel_success to shell_request The SSH shell_request handler was not sending channel_success back to the client, causing the client to close the connection immediately after the TUI launched. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Author: Max J. <87768334+MaxJMath@users.noreply.github.com> · 2026-04-22 22:49 UTC
Commit: 021553e98b07544b400bb2da372256dea389a136
Parent: 1f1dcd4
1 file changed, +1 insertion, -0 deletions
@@ -191,6 +191,7 @@ impl russh::server::Handler for MnwHandler {
191 191 staging_dir,
192 192 )?;
193 193 self.app = Some(app_handle);
194 + session.channel_success(channel)?;
194 195
195 196 Ok(())
196 197 }