Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: simplify sourceData check
Co-authored-by: Git'Fellow <[email protected]>
Signed-off-by: John Molakvoæ <[email protected]>
  • Loading branch information
2 people authored and backportbot-nextcloud[bot] committed Aug 6, 2023
commit 333040303102b94c608fb29a51f74204cd08f9f9
2 changes: 1 addition & 1 deletion lib/private/Files/Cache/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ public function moveFromCache(ICache $sourceCache, $sourcePath, $targetPath) {
$targetPath = $this->normalize($targetPath);

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

Expand Down