From 4adc33ebff988504175b09165ba34f644fc795ee Mon Sep 17 00:00:00 2001 From: Ethan Yonker Date: Fri, 22 Jan 2016 16:07:11 -0600 Subject: Fix (Auto Generate) handling for backup names Change-Id: I29f3823d03c005fb55a0e0a98818d40bd1eb039d --- gui/action.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gui/action.cpp') diff --git a/gui/action.cpp b/gui/action.cpp index 803d31355..711f64506 100644 --- a/gui/action.cpp +++ b/gui/action.cpp @@ -1169,9 +1169,8 @@ int GUIAction::nandroid(std::string arg) if (arg == "backup") { string Backup_Name; DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); - string auto_gen = gui_lookup("auto_gen", "(Auto Generate)"); - string curr_date = gui_lookup("curr_date", "(Current Date)"); - if (Backup_Name == "(Auto Generate)" || Backup_Name == "(Current Date)" || Backup_Name == "0" || Backup_Name == "(" || PartitionManager.Check_Backup_Name(true) == 0) { + string auto_gen = gui_lookup("auto_generate", "(Auto Generate)"); + if (Backup_Name == auto_gen || Backup_Name == gui_lookup("curr_date", "(Current Date)") || Backup_Name == "0" || Backup_Name == "(" || PartitionManager.Check_Backup_Name(true) == 0) { ret = PartitionManager.Run_Backup(); } else { -- cgit v1.2.3