Show 'unknown' for None type

This commit is contained in:
Eric Betts
2023-12-03 12:30:05 -08:00
parent ec3ded124f
commit 7dcf6450c3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ void seader_scene_credential_info_on_enter(void* context) {
furi_string_cat_printf(credential_str, "0x%llX", credential->credential);
if(credential->type == SeaderCredentialTypeNone) {
furi_string_set(type_str, "None");
furi_string_set(type_str, "Unknown");
} else if(credential->type == SeaderCredentialType14A) {
furi_string_set(type_str, "14443A");
} else if(credential->type == SeaderCredentialTypePicopass) {
+1 -1
View File
@@ -36,7 +36,7 @@ void seader_scene_read_card_success_on_enter(void* context) {
furi_string_cat_printf(credential_str, "0x%llX", credential->credential);
if(credential->type == SeaderCredentialTypeNone) {
furi_string_set(type_str, "None");
furi_string_set(type_str, "Unknown");
} else if(credential->type == SeaderCredentialType14A) {
furi_string_set(type_str, "14443A");
} else if(credential->type == SeaderCredentialTypePicopass) {