1
0
mirror of https://github.com/rclone/rclone.git synced 2026-01-04 17:43:50 +00:00

seafile: fix accessing libraries > 2GB on 32 bit systems - fixes #4588

This commit is contained in:
Muffin King
2020-09-16 03:55:10 +08:00
committed by GitHub
parent 5c49096e11
commit 61fe068c90
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ type Library struct {
Encrypted bool `json:"encrypted"`
Owner string `json:"owner"`
ID string `json:"id"`
Size int `json:"size"`
Size int64 `json:"size"`
Name string `json:"name"`
Modified int64 `json:"mtime"`
}