fix(bridge): Correct command name from msg_subscribe to msgs_subscribe

This commit is contained in:
MarekWo
2025-12-28 17:14:09 +01:00
parent d720d6a263
commit 3a100e742d
+2 -2
View File
@@ -128,9 +128,9 @@ class MeshCLISession:
try:
self.process.stdin.write('set json_log_rx on\n')
self.process.stdin.write('set print_adverts on\n')
self.process.stdin.write('msg_subscribe\n')
self.process.stdin.write('msgs_subscribe\n')
self.process.stdin.flush()
logger.info("Session settings applied: json_log_rx=on, print_adverts=on, msg_subscribe")
logger.info("Session settings applied: json_log_rx=on, print_adverts=on, msgs_subscribe")
except Exception as e:
logger.error(f"Failed to apply session settings: {e}")