diff options
author | big biff <bigbiff@teamw.in> | 2019-03-09 22:24:26 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit2@gerrit.omnirom.org> | 2019-03-09 22:24:26 +0100 |
commit | 4087034d080a5485bf611c41c5021b60389c8e65 (patch) | |
tree | 00f238f85ac7e28908f9a7d449141e7ddbe5f382 | |
parent | Merge "vold_decrypt: Add android 9.0 support" into android-9.0 (diff) | |
parent | Add path for time and date fix (diff) | |
download | android_bootable_recovery-4087034d080a5485bf611c41c5021b60389c8e65.tar android_bootable_recovery-4087034d080a5485bf611c41c5021b60389c8e65.tar.gz android_bootable_recovery-4087034d080a5485bf611c41c5021b60389c8e65.tar.bz2 android_bootable_recovery-4087034d080a5485bf611c41c5021b60389c8e65.tar.lz android_bootable_recovery-4087034d080a5485bf611c41c5021b60389c8e65.tar.xz android_bootable_recovery-4087034d080a5485bf611c41c5021b60389c8e65.tar.zst android_bootable_recovery-4087034d080a5485bf611c41c5021b60389c8e65.zip |
-rw-r--r-- | twrp-functions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twrp-functions.cpp b/twrp-functions.cpp index 263593420..00a57a749 100644 --- a/twrp-functions.cpp +++ b/twrp-functions.cpp @@ -922,7 +922,7 @@ void TWFunc::Fixup_Time_On_Boot(const string& time_paths /* = "" */) std::vector<std::string> paths; // space separated list of paths if (time_paths.empty()) { - paths = Split_String("/data/system/time/ /data/time/", " "); + paths = Split_String("/data/system/time/ /data/time/ /data/vendor/time/", " "); if (!PartitionManager.Mount_By_Path("/data", false)) return; } else { |