diff --git a/applications/main/nfc/scenes/nfc_scene_mf_ultralight_c_keys_add.c b/applications/main/nfc/scenes/nfc_scene_mf_ultralight_c_keys_add.c index aa4c2fe1c..63fdaed49 100644 --- a/applications/main/nfc/scenes/nfc_scene_mf_ultralight_c_keys_add.c +++ b/applications/main/nfc/scenes/nfc_scene_mf_ultralight_c_keys_add.c @@ -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); } diff --git a/applications/system/mfkey/mfkey.c b/applications/system/mfkey/mfkey.c index 4d55a5b03..9e3e71847 100644 --- a/applications/system/mfkey/mfkey.c +++ b/applications/system/mfkey/mfkey.c @@ -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);