diff options
author | Kate <26026535+provokateurin@users.noreply.github.com> | 2025-01-27 10:20:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-27 10:20:36 +0100 |
commit | e03b9ce5d2f45b0e0b4dbbfc4c53a28fe0546402 (patch) | |
tree | dc9e877b3e0752757dc747539dee22b48adc4527 | |
parent | 29724ff27e9377f52a5d97a6944523522004e1ce (diff) | |
parent | 4179abdb81722013511f3f53a4d10f247fb492ec (diff) | |
download | nextcloud-server-e03b9ce5d2f45b0e0b4dbbfc4c53a28fe0546402.tar.gz nextcloud-server-e03b9ce5d2f45b0e0b4dbbfc4c53a28fe0546402.zip |
Merge pull request #50298 from nextcloud/smb-hasupdated-deleted
-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; } } |