Skip to content

Commit

Permalink
Fix POCSAG pager RIC: text repetition (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Mar 25, 2023
1 parent 5391b69 commit 474897d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/external/pocsag_pager/protocols/pocsag.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 474897d

Please sign in to comment.