mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 06:31:58 +00:00
only delete duplicates if option is set
This commit is contained in:
parent
bdaa6f3581
commit
5c916be26a
1 changed files with 4 additions and 1 deletions
|
@ -332,7 +332,10 @@ const deleteFiles = async ({ files: string[], duplicates: string[] } , options:
|
|||
deletionProgress.stop();
|
||||
}
|
||||
|
||||
|
||||
|
||||
if (!options.deleteDuplicates) {
|
||||
return;
|
||||
}
|
||||
console.log('Deleting assets which are duplicates...');
|
||||
|
||||
const deletionProgressDupe = new SingleBar(
|
||||
|
|
Loading…
Reference in a new issue