1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-13 05:06:30 +04: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:
Astra
2024-08-01 05:57:00 +09:00
committed by GitHub
parent 56fef61c66
commit 59eb749b2b

View File

@@ -230,7 +230,7 @@ static bool plantain_parse(const NfcDevice* device, FuriString* parsed_data) {
}
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;
} while(false);