mirror of
https://github.com/nextcloud/server.git
synced 2026-02-15 08:48:14 -05:00
fix: detect deleted items as updated for smb storage
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
ec266ac99c
commit
b1ee1b80d4
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue