We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f2e051 commit 6f34ee4Copy full SHA for 6f34ee4
Classes/Command/UnduplicateCommand.php
@@ -561,6 +561,9 @@ private function findAndDeleteOldProcessedFile(int $oldFileUid): void
561
)
562
->executeQuery();
563
while ($record = $results->fetchAssociative()) {
564
+ if(empty($record['identifier'])) {
565
+ continue;
566
+ }
567
// delete each file from file system
568
$this->output->writeln('<info>Deleting processed file ' . $record['identifier'] . '</info>');
569
$this->deleteProcessedFile($record['identifier']);
0 commit comments