Skip to content

Commit

Permalink
[NFC] Change the plantain last number display from "?" to "X" (#3819)
Browse files Browse the repository at this point in the history
  • Loading branch information
Astrrra authored Aug 2, 2024
1 parent bec6bd3 commit 4f46032
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.: %lluX\nBalance: %lu\n", card_number, balance);
parsed = true;
} while(false);

Expand Down
2 changes: 1 addition & 1 deletion applications/main/nfc/plugins/supported_cards/two_cities.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ static bool two_cities_parse(const NfcDevice* device, FuriString* parsed_data) {

furi_string_printf(
parsed_data,
"\e#Troika+Plantain\nPN: %llu?\nPB: %lu rur.\nTN: %lu\nTB: %u rur.\n",
"\e#Troika+Plantain\nPN: %lluX\nPB: %lu rur.\nTN: %lu\nTB: %u rur.\n",
card_number,
balance,
troika_number,
Expand Down

0 comments on commit 4f46032

Please sign in to comment.