1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-13 13:09:49 +04:00

post merge fix

This commit is contained in:
MX
2025-09-30 02:16:07 +03:00
parent 3e45fce96d
commit 999afe3f5b
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ bool nfc_scene_mf_ultralight_c_keys_add_on_event(void* context, SceneManagerEven
instance->scene_manager, NfcSceneMfUltralightCKeysWarnDuplicate);
} else if(keys_dict_add_key(dict, key.data, sizeof(MfUltralightC3DesAuthKey))) {
scene_manager_next_scene(instance->scene_manager, NfcSceneSaveSuccess);
dolphin_deed(DolphinDeedNfcMfcAdd);
dolphin_deed(DolphinDeedNfcKeyAdd);
} else {
scene_manager_previous_scene(instance->scene_manager);
}

View File

@@ -955,7 +955,7 @@ void mfkey(ProgramState* program_state) {
keys_dict_add_key(user_dict, keyarray[i].data, sizeof(MfClassicKey));
}
if(keyarray_size > 0) {
dolphin_deed(DolphinDeedNfcMfcAdd);
dolphin_deed(DolphinDeedNfcKeyAdd);
}
free(nonce_arr);
keys_dict_free(user_dict);