Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Fix new subghz filter system bug!!!!!
Browse files Browse the repository at this point in the history
No wonder nothing was getting picked up, my bad!
Thanks @htotoo for spotting this!
--nobuild
  • Loading branch information
Willy-JL committed Nov 4, 2023
1 parent d15cedc commit b0a57b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/main/subghz/scenes/subghz_scene_receiver.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ static void subghz_scene_add_to_history_callback(
SubGhz* subghz = context;

// The check can be moved to /lib/subghz/receiver.c, but may result in false positives
if((decoder_base->protocol->flag & subghz->ignore_filter) == 0) {
if((decoder_base->protocol->filter & subghz->ignore_filter) == 0) {
SubGhzHistory* history = subghz->history;
FuriString* item_name = furi_string_alloc();
FuriString* item_time = furi_string_alloc();
Expand Down

0 comments on commit b0a57b4

Please sign in to comment.