Skip to content

Commit 474897d

Browse files
committed
Fix POCSAG pager RIC: text repetition (#172)
1 parent 5391b69 commit 474897d

File tree

1 file changed

+1
-1
lines changed
  • applications/external/pocsag_pager/protocols

1 file changed

+1
-1
lines changed

applications/external/pocsag_pager/protocols/pocsag.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ static bool pocsag_decode_message_word(SubGhzProtocolDecoderPocsag* instance, ui
157157
// Function called when current message got decoded, but other messages might follow
158158
static void pocsag_message_done(SubGhzProtocolDecoderPocsag* instance) {
159159
// append the message to the long-term storage string
160-
furi_string_cat_printf(
160+
furi_string_printf(
161161
instance->generic.result_ric, "\e#RIC: %" PRIu32 "\e# | ", instance->ric);
162162
furi_string_cat_str(instance->generic.result_ric, func_msg[instance->func]);
163163
if(instance->func != POCSAG_FUNC_ALERT1) {

0 commit comments

Comments
 (0)