Skip to content

Commit e69b0b9

Browse files
committedAug 4, 2021
fixup! fixup! fixup! First attempt to make multipartPart upload working
1 parent 309c17a commit e69b0b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎apps/dav/lib/BackgroundJob/UploadCleanup.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ protected function run($argument) {
7777
$files = $uploadFolder->getDirectoryListing();
7878

7979
$davPath = 'uploads/' . $uid . '/' . $uploadFolder->getName();
80-
$this->customPropertiesService->delete($uid, $davPath);
8180

8281
// Remove if all files have an mtime of more than a day
8382
$time = $this->time->getTime() - 60 * 60 * 24;
@@ -90,6 +89,7 @@ protected function run($argument) {
9089
}, $initial);
9190

9291
if ($expire) {
92+
$this->customPropertiesService->delete($uid, $davPath);
9393
$uploadFolder->delete();
9494
$this->jobList->remove(self::class, $argument);
9595
}

0 commit comments

Comments
 (0)
Please sign in to comment.