diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2017-01-18 23:44:54 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2017-01-18 23:44:54 +0100 |
commit | 5e1a7f932c39b96508c6dd417cf449494d901204 (patch) | |
tree | 79449e3429ad9089fd2ce7452c98ce3479dc9aeb /gui/action.cpp | |
parent | Merge "gui: bump theme version to 2" into android-7.1 (diff) | |
download | android_bootable_recovery-5e1a7f932c39b96508c6dd417cf449494d901204.tar android_bootable_recovery-5e1a7f932c39b96508c6dd417cf449494d901204.tar.gz android_bootable_recovery-5e1a7f932c39b96508c6dd417cf449494d901204.tar.bz2 android_bootable_recovery-5e1a7f932c39b96508c6dd417cf449494d901204.tar.lz android_bootable_recovery-5e1a7f932c39b96508c6dd417cf449494d901204.tar.xz android_bootable_recovery-5e1a7f932c39b96508c6dd417cf449494d901204.tar.zst android_bootable_recovery-5e1a7f932c39b96508c6dd417cf449494d901204.zip |
Diffstat (limited to 'gui/action.cpp')
-rw-r--r-- | gui/action.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/action.cpp b/gui/action.cpp index ef110bcfd..fef476287 100644 --- a/gui/action.cpp +++ b/gui/action.cpp @@ -1914,7 +1914,8 @@ int GUIAction::checkforapp(std::string arg __unused) DataManager::SetValue("tw_app_install_status", 2); // 0 = no status, 1 = not installed, 2 = already installed goto exit; } - } else if (PartitionManager.Mount_By_Path("/data", false)) { + } + if (PartitionManager.Mount_By_Path("/data", false)) { string parent_path = "/data/app"; DIR *d = opendir("/data/app"); struct dirent *p; |