mirror of
https://github.com/rclone/rclone.git
synced 2025-12-20 18:23:31 +00:00
Compare commits
1 Commits
fix-9031-b
...
fix-mega-d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6811629877 |
5
vendor/github.com/t3rm1n4l/go-mega/mega.go
generated
vendored
5
vendor/github.com/t3rm1n4l/go-mega/mega.go
generated
vendored
@@ -894,6 +894,11 @@ func (m *Mega) NewDownload(src *Node) (*Download, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DownloadResp has an embedded error in it for some reason
|
||||||
|
if res[0].Err != 0 {
|
||||||
|
return nil, parseError(res[0].Err)
|
||||||
|
}
|
||||||
|
|
||||||
_, err = decryptAttr(key, []byte(res[0].Attr))
|
_, err = decryptAttr(key, []byte(res[0].Attr))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|||||||
2
vendor/github.com/t3rm1n4l/go-mega/messages.go
generated
vendored
2
vendor/github.com/t3rm1n4l/go-mega/messages.go
generated
vendored
@@ -123,7 +123,7 @@ type DownloadResp struct {
|
|||||||
G string `json:"g"`
|
G string `json:"g"`
|
||||||
Size uint64 `json:"s"`
|
Size uint64 `json:"s"`
|
||||||
Attr string `json:"at"`
|
Attr string `json:"at"`
|
||||||
Err uint32 `json:"e"`
|
Err ErrorMsg `json:"e"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type UploadMsg struct {
|
type UploadMsg struct {
|
||||||
|
|||||||
Reference in New Issue
Block a user