From d1c3b0bc680c4eb4c79bbbc1f969b8756781aa34 Mon Sep 17 00:00:00 2001 From: GameLord2011 <119822417+GameLord2011@users.noreply.github.com> Date: Tue, 20 May 2025 17:50:47 -0400 Subject: [PATCH] Fixed inverted logic condition in subghz chat cli (#4212) --- applications/main/subghz/subghz_cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/main/subghz/subghz_cli.c b/applications/main/subghz/subghz_cli.c index 674738851f..08f2406dd2 100644 --- a/applications/main/subghz/subghz_cli.c +++ b/applications/main/subghz/subghz_cli.c @@ -1092,7 +1092,7 @@ static void subghz_cli_command_chat(PipeSide* pipe, FuriString* args) { break; } } - if(!cli_is_pipe_broken_or_is_etx_next_char(pipe)) { + if(cli_is_pipe_broken_or_is_etx_next_char(pipe)) { printf("\r\n"); chat_event.event = SubGhzChatEventUserExit; subghz_chat_worker_put_event_chat(subghz_chat, &chat_event);