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-27 09:22:03 +0000 |
commit | 5c0d4a4bea9fafed5f41459902b63545d936e158 (patch) | |
tree | 320093cf7df5ae393492256e1d7b10b72cbdd181 /apps/files_external | |
parent | 46c4013b519d0f8402bd3998735e0592bc2e78d3 (diff) | |
download | nextcloud-server-backport/50298/stable31.tar.gz nextcloud-server-backport/50298/stable31.zip |
fix: detect deleted items as updated for smb storagebackport/50298/stable31
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_external')
-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 4483cfd1bdf..ef203021566 100644 --- a/apps/files_external/lib/Lib/Storage/SMB.php +++ b/apps/files_external/lib/Lib/Storage/SMB.php @@ -410,7 +410,7 @@ class SMB extends Common implements INotifyStorage { return true; } else { $actualTime = $this->filemtime($path); - return $actualTime > $time; + return $actualTime > $time || $actualTime === 0; } } |