fix wrong tick value for 5 min

This commit is contained in:
Kang Yu 2025-04-28 14:16:45 -07:00
parent 8771c2edd7
commit f7a1f92343

View file

@ -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)