mirror of
https://github.com/nextcloud/server.git
synced 2026-05-19 08:25:56 -04:00
Merge pull request #50458 from nextcloud/backport/50298/stable31
[stable31] fix: detect deleted items as updated for smb storage
This commit is contained in:
commit
62a74d8264
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue