diff options
author | Phoenix591 <kcelbert@gmail.com> | 2018-02-03 07:41:08 +0100 |
---|---|---|
committer | Dees Troy <dees_troy@teamw.in> | 2018-05-25 18:14:32 +0200 |
commit | 46b05f223a7f14396b76e33c252a5b7e82833350 (patch) | |
tree | 4b309f8ef428672c404036f91c80f1ec92ddb6d2 | |
parent | Skip decryption when installing mapped zips (diff) | |
download | android_bootable_recovery-46b05f223a7f14396b76e33c252a5b7e82833350.tar android_bootable_recovery-46b05f223a7f14396b76e33c252a5b7e82833350.tar.gz android_bootable_recovery-46b05f223a7f14396b76e33c252a5b7e82833350.tar.bz2 android_bootable_recovery-46b05f223a7f14396b76e33c252a5b7e82833350.tar.lz android_bootable_recovery-46b05f223a7f14396b76e33c252a5b7e82833350.tar.xz android_bootable_recovery-46b05f223a7f14396b76e33c252a5b7e82833350.tar.zst android_bootable_recovery-46b05f223a7f14396b76e33c252a5b7e82833350.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 b7bcebe2d..f82de6140 100644 --- a/twrp-functions.cpp +++ b/twrp-functions.cpp @@ -904,7 +904,7 @@ void TWFunc::Fixup_Time_On_Boot(const string& time_paths /* = "" */) gettimeofday(&tv, NULL); - if (tv.tv_sec > 1405209403) { // Anything older then 12 Jul 2014 23:56:43 GMT will do nicely thank you ;) + if (tv.tv_sec > 1517600000) { // Anything older then 2 Feb 2018 19:33:20 GMT will do nicely thank you ;) LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str()); fixed = true; |