Skip to content

Commit

Permalink
[BUGFIX] Fix DeleteUploadsFinisher with recyclers
Browse files Browse the repository at this point in the history
Resolves: #86940
Releases: master, 9.5
Change-Id: Ice33805a10722459d28bacc89385e57e9618bba5
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/60540
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Mathias Brodala <mbrodala@pagemachine.de>
Tested-by: Ralf Zimmermann <ralf.zimmermann@tritum.de>
Reviewed-by: Mathias Brodala <mbrodala@pagemachine.de>
Reviewed-by: Ralf Zimmermann <ralf.zimmermann@tritum.de>
  • Loading branch information
Michael Waack authored and waldhacker1 committed Apr 25, 2019
1 parent 54e29cb commit dd065d0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -49,7 +49,7 @@ protected function executeInternal()
if ($file instanceof FileReference) {
$file = $file->getOriginalResource();
}
$file->getStorage()->deleteFile($file);
$file->getStorage()->deleteFile($file->getOriginalFile());
}
}
}

0 comments on commit dd065d0

Please sign in to comment.