1
mirror of https://github.com/rclone/rclone synced 2024-10-07 15:17:14 +02:00

onedrive: return err instead of panic on unknown-sized uploads

This commit is contained in:
Cnly 2019-02-02 16:37:33 +08:00
parent c496efe9a4
commit 7b20139c6a

View File

@ -1602,7 +1602,7 @@ func (o *Object) Update(in io.Reader, src fs.ObjectInfo, options ...fs.OpenOptio
} else if size == 0 {
info, err = o.uploadSinglepart(in, size, modTime)
} else {
panic("src file size must be >= 0")
return errors.New("unknown-sized upload not supported")
}
if err != nil {
return err