From 474897d644047343b8bbf9fb21e00e727ed608c1 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Fri, 24 Mar 2023 23:07:42 +0000 Subject: [PATCH] Fix POCSAG pager RIC: text repetition (#172) --- applications/external/pocsag_pager/protocols/pocsag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/external/pocsag_pager/protocols/pocsag.c b/applications/external/pocsag_pager/protocols/pocsag.c index ca210c2a4..cc393ac5b 100644 --- a/applications/external/pocsag_pager/protocols/pocsag.c +++ b/applications/external/pocsag_pager/protocols/pocsag.c @@ -157,7 +157,7 @@ static bool pocsag_decode_message_word(SubGhzProtocolDecoderPocsag* instance, ui // Function called when current message got decoded, but other messages might follow static void pocsag_message_done(SubGhzProtocolDecoderPocsag* instance) { // append the message to the long-term storage string - furi_string_cat_printf( + furi_string_printf( instance->generic.result_ric, "\e#RIC: %" PRIu32 "\e# | ", instance->ric); furi_string_cat_str(instance->generic.result_ric, func_msg[instance->func]); if(instance->func != POCSAG_FUNC_ALERT1) {