mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-09-26 18:35:43 +00:00
Fix file updates being checked against wrong timestamp (#300)
This commit is contained in:
@@ -252,7 +252,7 @@ public class FileBridge {
|
||||
// the modified time is the same for both write operations due to the file system modified time resolution being limited
|
||||
// We then can't identify changes purely based on the modified time, so the file size is the next best option
|
||||
// This might result in double change detection in rare cases, but that is irrelevant as it prevents files from being blanked
|
||||
var changed = !newDate.equals(getLastModified()) || newSize > lastSize;
|
||||
var changed = !newDate.equals(lastModified) || newSize > lastSize;
|
||||
lastSize = newSize;
|
||||
lastModified = newDate;
|
||||
return changed;
|
||||
|
||||
Reference in New Issue
Block a user