We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9008aa commit 44d33d3Copy full SHA for 44d33d3
app/src/main/java/io/xpipe/app/util/FileBridge.java
@@ -252,7 +252,7 @@ public boolean registerChange() {
252
// the modified time is the same for both write operations due to the file system modified time resolution being limited
253
// We then can't identify changes purely based on the modified time, so the file size is the next best option
254
// This might result in double change detection in rare cases, but that is irrelevant as it prevents files from being blanked
255
- var changed = !newDate.equals(getLastModified()) || newSize > lastSize;
+ var changed = !newDate.equals(lastModified) || newSize > lastSize;
256
lastSize = newSize;
257
lastModified = newDate;
258
return changed;
0 commit comments