1
mirror of https://github.com/rclone/rclone synced 2024-11-23 00:06:55 +01:00

acd: fix typo in log message for temp link download

This commit is contained in:
Martin Kristensen 2017-04-24 16:36:34 +02:00 committed by Nick Craig-Wood
parent 06a3502ed8
commit 7b4f368307

View File

@ -983,7 +983,7 @@ func (o *Object) Storable() bool {
func (o *Object) Open(options ...fs.OpenOption) (in io.ReadCloser, err error) {
bigObject := o.Size() >= int64(tempLinkThreshold)
if bigObject {
fs.Debugf(o, "Dowloading large object via tempLink")
fs.Debugf(o, "Downloading large object via tempLink")
}
file := acd.File{Node: o.info}
var resp *http.Response