adjust comment

This commit is contained in:
Chris Lu 2021-08-30 15:56:11 -07:00
parent 72d4ff6b28
commit f117f7bf54

View file

@ -76,7 +76,7 @@ func detectMountInfo(commandEnv *CommandEnv, writer io.Writer, dir string) (*rem
This function update entry.RemoteEntry if the remote has any changes. This function update entry.RemoteEntry if the remote has any changes.
To pull remote updates, or created for the first time, the criteria is: To pull remote updates, or created for the first time, the criteria is:
entry == nil or (entry.RemoteEntry != nil and entry.RemoteEntry.RemoteTag != remote.RemoteTag) entry == nil or (entry.RemoteEntry != nil and (entry.RemoteEntry.RemoteTag != remote.RemoteTag or entry.RemoteEntry.RemoteMTime < remote.RemoteMTime ))
After the meta pull, the entry.RemoteEntry will have: After the meta pull, the entry.RemoteEntry will have:
remoteEntry.LastLocalSyncTsNs == 0 remoteEntry.LastLocalSyncTsNs == 0
Attributes.FileSize = uint64(remoteEntry.RemoteSize) Attributes.FileSize = uint64(remoteEntry.RemoteSize)