diff options
author | Robin Appelman <robin@icewind.nl> | 2025-01-21 17:56:46 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-01-30 14:27:31 +0000 |
commit | b1ee1b80d4beb4502202fe50635fcfddd97bd1ab (patch) | |
tree | 7d890ff8557f0b5f03b166877f0515b914db5ed4 | |
parent | ec266ac99ce0c4d31ba8ea9c3c716501c03111ec (diff) | |
download | nextcloud-server-backport/50298/stable30.tar.gz nextcloud-server-backport/50298/stable30.zip |
fix: detect deleted items as updated for smb storagebackport/50298/stable30
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r-- | apps/files_external/lib/Lib/Storage/SMB.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/Storage/SMB.php b/apps/files_external/lib/Lib/Storage/SMB.php index a646345cc69..87bf9fda410 100644 --- a/apps/files_external/lib/Lib/Storage/SMB.php +++ b/apps/files_external/lib/Lib/Storage/SMB.php @@ -443,7 +443,7 @@ class SMB extends Common implements INotifyStorage { return true; } else { $actualTime = $this->filemtime($path); - return $actualTime > $time; + return $actualTime > $time || $actualTime === 0; } } |