fix: detect deleted items as updated for smb storage

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/50458/head
Robin Appelman 2025-01-21 17:56:46 +07:00 committed by backportbot[bot]
parent 46c4013b51
commit 5c0d4a4bea
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;
}
}