mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-26 06:20:21 +00:00
[FL-3879] Fix plantain balance string (#3813)
* Fix balance string * nfc app: remove ? in plantain Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: あく <alleteam@gmail.com> Co-authored-by: gornekich <n.gorbadey@gmail.com>
This commit is contained in:
parent
56fef61c66
commit
59eb749b2b
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ static bool plantain_parse(const NfcDevice* device, FuriString* parsed_data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
furi_string_printf(
|
furi_string_printf(
|
||||||
parsed_data, "\e#Plantain\nNo.: %llu?\nBalance:%lu\n", card_number, balance);
|
parsed_data, "\e#Plantain\nNo.: %llu\nBalance: %lu\n", card_number, balance);
|
||||||
parsed = true;
|
parsed = true;
|
||||||
} while(false);
|
} while(false);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue