Skip to content

Commit

Permalink
Fixed opening files from unencrypted backups
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxiHuHe04 committed May 17, 2022
1 parent fa0d59b commit c851ab8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public void extract(File destination)
throw new BackupReadException(e);
}
} else {
Files.copy(this.contentFile.toPath(), destination.toPath());
Files.copy(this.contentFile.toPath(), destination.toPath(), StandardCopyOption.REPLACE_EXISTING);
}
break;
case SYMBOLIC_LINK:
Expand Down

0 comments on commit c851ab8

Please sign in to comment.