Skip to content

Commit

Permalink
Merge pull request #39722 from nextcloud/backport/39698/stable27
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv authored Aug 11, 2023
2 parents 58f1fff + 0638f58 commit bb06aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Files/Cache/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ public function moveFromCache(ICache $sourceCache, $sourcePath, $targetPath) {
$targetPath = $this->normalize($targetPath);

$sourceData = $sourceCache->get($sourcePath);
if ($sourceData === false) {
if (!$sourceData) {
throw new \Exception('Invalid source storage path: ' . $sourcePath);
}

Expand Down

0 comments on commit bb06aad

Please sign in to comment.