diff options
Diffstat (limited to '')
-rw-r--r-- | openrecoveryscript.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/openrecoveryscript.cpp b/openrecoveryscript.cpp index a842d3370..f6f63dc0e 100644 --- a/openrecoveryscript.cpp +++ b/openrecoveryscript.cpp @@ -215,6 +215,8 @@ int OpenRecoveryScript::run_script_file(void) { PartitionManager.Set_Restore_Files(folder_path); string Partition_List; + int is_encrypted = 0; + DataManager::GetValue("tw_restore_encrypted", is_encrypted); DataManager::GetValue("tw_restore_list", Partition_List); if (strlen(partitions) != 0) { string Restore_List; @@ -260,7 +262,10 @@ int OpenRecoveryScript::run_script_file(void) { } else { DataManager::SetValue("tw_restore_selected", Partition_List); } - if (!PartitionManager.Run_Restore(folder_path)) + if (is_encrypted) { + LOGERR("Unable to use OpenRecoveryScript to restore an encrypted backup.\n"); + ret_val = 1; + } else if (!PartitionManager.Run_Restore(folder_path)) ret_val = 1; else gui_print("Restore complete!\n"); |