1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-12 04:41:26 +04:00

Fixed inverted logic condition in subghz chat cli (#4212)

This commit is contained in:
GameLord2011
2025-05-20 17:50:47 -04:00
committed by GitHub
parent 5b911f5405
commit d1c3b0bc68

View File

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