adjust modification detection logic

This commit is contained in:
Chris Lu
2021-08-14 15:44:47 -07:00
parent f365af81c2
commit 889b143fa7
2 changed files with 2 additions and 2 deletions

View File

@@ -118,7 +118,7 @@ func shouldCacheToLocal(entry *filer_pb.Entry) bool {
if entry.RemoteEntry == nil {
return false
}
if entry.RemoteEntry.LocalMtime == 0 && entry.RemoteEntry.RemoteSize > 0 {
if entry.RemoteEntry.LocalMtime < entry.Attributes.Mtime && entry.RemoteEntry.RemoteSize > 0 {
return true
}
return false