Merge pull request #50458 from nextcloud/backport/50298/stable31

[stable31] fix: detect deleted items as updated for smb storage
pull/50468/head
Andy Scherzinger 1 year ago committed by GitHub
commit 62a74d8264
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      apps/files_external/lib/Lib/Storage/SMB.php

@ -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…
Cancel
Save