mirror of
https://github.com/rclone/rclone.git
synced 2025-01-24 12:56:36 +02:00
onedrive: return err instead of panic on unknown-sized uploads
This commit is contained in:
parent
c496efe9a4
commit
7b20139c6a
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user