Skip to content

Commit

Permalink
[FL-3879] Fix plantain balance string (#3813)
Browse files Browse the repository at this point in the history
* Fix balance string
* nfc app: remove ? in plantain

Co-authored-by: hedger <[email protected]>
Co-authored-by: あく <[email protected]>
Co-authored-by: gornekich <[email protected]>
  • Loading branch information
4 people authored Jul 31, 2024
1 parent 56fef61 commit 59eb749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/main/nfc/plugins/supported_cards/plantain.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 59eb749

Please sign in to comment.