1
mirror of https://github.com/rclone/rclone synced 2025-01-03 03:46:24 +01:00

Make sizes in Dropbox 64 bit - fixes #80

This commit is contained in:
Nick Craig-Wood 2015-08-03 21:18:34 +01:00
parent 6c6d7eb770
commit 472f065ce7

View File

@ -388,7 +388,7 @@ func (f *FsDropbox) ListDir() fs.DirChan {
out <- &fs.Dir{
Name: *name,
When: time.Time(entry.ClientMtime),
Bytes: int64(entry.Bytes),
Bytes: entry.Bytes,
Count: -1,
}
}
@ -596,7 +596,7 @@ func (o *FsObjectDropbox) Size() int64 {
//
// This isn't a complete set of metadata and has an inacurate date
func (o *FsObjectDropbox) setMetadataFromEntry(info *dropbox.Entry) {
o.bytes = int64(info.Bytes)
o.bytes = info.Bytes
o.modTime = time.Time(info.ClientMtime)
}