mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-10 20:45:38 +02:00
fix wrong tick value for 5 min
This commit is contained in:
parent
8771c2edd7
commit
f7a1f92343
1 changed files with 1 additions and 1 deletions
|
@ -1071,7 +1071,7 @@ namespace PersistentWindows.Common
|
|||
}
|
||||
|
||||
var ticks = Kernel32.GetTickCount64();
|
||||
if (ticks > 600000) //system up 5min
|
||||
if (ticks > 300000) //system up 5min
|
||||
return true;
|
||||
|
||||
if (db_exist && auto_restore_from_db)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue