You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix consideration of persistence backup frequency to be minutes, not seconds
[CL 27272864 by marc audy in ue5-main branch]
This commit is contained in:
@@ -457,7 +457,7 @@ export class Settings {
|
||||
}
|
||||
})
|
||||
}
|
||||
else if ((Date.now() - this.lastPersistBackupTime.getTime()) / 1000 >= args.persistenceBackupFrequency) {
|
||||
else if ((Date.now() - this.lastPersistBackupTime.getTime()) / 60000 >= args.persistenceBackupFrequency) {
|
||||
this.lastPersistBackupTime = new Date(Date.now())
|
||||
|
||||
this.p4.sync(this.p4workspace, persistentFile, {opts: ['-k']})
|
||||
|
||||
Reference in New Issue
Block a user