mirror of
https://github.com/immich-app/immich.git
synced 2025-01-16 00:36:47 +01: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();
|
deletionProgress.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!options.deleteDuplicates) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
console.log('Deleting assets which are duplicates...');
|
console.log('Deleting assets which are duplicates...');
|
||||||
|
|
||||||
const deletionProgressDupe = new SingleBar(
|
const deletionProgressDupe = new SingleBar(
|
||||||
|
|
Loading…
Reference in a new issue