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 committed by backportbot[bot]
parent ec266ac99c
commit b1ee1b80d4

View file

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