mirror of
https://github.com/rclone/rclone.git
synced 2025-12-10 13:23:21 +00:00
build: fix gocritic lint issue valswap
This commit is contained in:
committed by
Nick Craig-Wood
parent
c6d3714e73
commit
bad8207378
@@ -923,9 +923,7 @@ func (f *Fs) netStorageStatRequest(ctx context.Context, URL string, directory bo
|
|||||||
entrywanted := (directory && files[i].Type == "dir") ||
|
entrywanted := (directory && files[i].Type == "dir") ||
|
||||||
(!directory && files[i].Type != "dir")
|
(!directory && files[i].Type != "dir")
|
||||||
if entrywanted {
|
if entrywanted {
|
||||||
filestamp := files[0]
|
files[0], files[i] = files[i], files[0]
|
||||||
files[0] = files[i]
|
|
||||||
files[i] = filestamp
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return files, nil
|
return files, nil
|
||||||
|
|||||||
Reference in New Issue
Block a user