Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: detect deleted items as updated for smb storage
Signed-off-by: Robin Appelman <[email protected]>
  • Loading branch information
icewind1991 authored and backportbot[bot] committed Jan 30, 2025
commit 26e7849d160411356227a38a7d719b76094b2c1b
2 changes: 1 addition & 1 deletion apps/files_external/lib/Lib/Storage/SMB.php
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ public function hasUpdated($path, $time) {
return true;
} else {
$actualTime = $this->filemtime($path);
return $actualTime > $time;
return $actualTime > $time || $actualTime === 0;
}
}

Expand Down
Loading