mirror of
https://github.com/MarekWo/mc-webui.git
synced 2026-03-28 17:42:45 +01:00
Issue: Messages sent to Public channel had visible double quotes around multi-word text (e.g., "Hello world" appeared as "Hello world" in chat). Root cause: In interactive mode, meshcli's 'public' command treats quotes literally as part of message content, while 'chan' command correctly parses them as argument delimiters. Solution: Use 'chan 0' for Public channel instead of 'public' command. This ensures consistent quote handling across all channels. Before: - Public (ch 0): public "message" → quotes visible in output - Other channels: chan <nb> "message" → quotes correctly parsed ✓ After: - All channels: chan <nb> "message" → consistent behavior ✓ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>