fix: detect deleted items as updated for smb storage

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2025-01-21 17:56:46 +01:00
parent 101c7575ae
commit 4179abdb81
No known key found for this signature in database
GPG key ID: 42B69D8A64526EFB

View file

@ -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;
}
}