Skip to content

Commit

Permalink
other: Changed backup interval to 5 min
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkoelle committed May 13, 2021
1 parent 61ca8b5 commit 88e8952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/backup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as BackupIPC from './constants/BackupIPC';
export default class Backup {
static backupDir: string = Path.join(app.getPath('userData'), 'Backup');

private interval: number = 0.5 * 60 * 1000;
private interval: number = 5 * 60 * 1000;

private retention: number = 30 * 24 * 60 * 60 * 1000;

Expand Down

0 comments on commit 88e8952

Please sign in to comment.