diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-23 09:55:03 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-02-07 11:23:29 +0100 |
commit | d9dbed91050e80ab15768c278a1aecdfc3a1efda (patch) | |
tree | 6b29c1164d64e22f06c426175d0195f1d412a4f0 /lib/private/Files/Storage/Common.php | |
parent | ff776a90b133fa113c29511a5a7983a7a1a8b73c (diff) | |
download | nextcloud-server-d9dbed91050e80ab15768c278a1aecdfc3a1efda.tar.gz nextcloud-server-d9dbed91050e80ab15768c278a1aecdfc3a1efda.zip |
Fix psalm errors related to filesizes
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/private/Files/Storage/Common.php')
-rw-r--r-- | lib/private/Files/Storage/Common.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/Storage/Common.php b/lib/private/Files/Storage/Common.php index 8b46df3df6e..22b2e8164fb 100644 --- a/lib/private/Files/Storage/Common.php +++ b/lib/private/Files/Storage/Common.php @@ -695,9 +695,9 @@ abstract class Common implements Storage, ILockingStorage, IWriteStreamStorage { $result = $this->copyFromStorage($sourceStorage, $sourceInternalPath, $targetInternalPath, true); if ($result) { if ($sourceStorage->is_dir($sourceInternalPath)) { - $result = $result && $sourceStorage->rmdir($sourceInternalPath); + $result = $sourceStorage->rmdir($sourceInternalPath); } else { - $result = $result && $sourceStorage->unlink($sourceInternalPath); + $result = $sourceStorage->unlink($sourceInternalPath); } } return $result; |