Skip to content

Commit

Permalink
backups - fix hasBackups for empty windows (#160480)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Sep 9, 2022
1 parent f54c237 commit e57f698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/platform/backup/electron-main/backupMainService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ export class BackupMainService implements IBackupMainService {

// Empty
if (isEmptyWindowBackupInfo(backupLocation)) {
backupPath = backupLocation.backupFolder;
backupPath = join(this.backupHome, backupLocation.backupFolder);
}

// Folder
Expand Down

0 comments on commit e57f698

Please sign in to comment.