Fixing style fix

Fixing 24d80f51a9 where an AND was switched to an OR
This commit is contained in:
Antiklesys 2025-07-04 18:37:46 +08:00
parent 24d80f51a9
commit f5e61410c6

View file

@ -2828,7 +2828,7 @@ void iClass_Recover(iclass_recover_req_t *msg) {
if (msg->test) {
Dbprintf(_YELLOW_("*Cycled Reader*") " TEST Index - Loops: "_YELLOW_("%3d / %3d") " *", loops, msg->loop);
} else if (msg->debug || ((card_select == false) || (card_auth == false))) {
} else if (msg->debug || ((card_select == false) && (card_auth == false))) {
Dbprintf(_YELLOW_("*Cycled Reader*") " Index: "_RED_("%3d")" Loops: "_YELLOW_("%3d / %3d") " *", index, loops, msg->loop);
} else {
DbprintfEx(FLAG_INPLACE, "[" _BLUE_("#") "] Index: "_CYAN_("%3d")" Loops: "_YELLOW_("%3d / %3d")" ", index, loops, msg->loop);