mirror of
https://github.com/rclone/rclone.git
synced 2025-08-09 13:55:15 +02:00
protondrive: fix a bug in parsing User metadata (#7174)
This commit is contained in:
@ -737,8 +737,8 @@ func (f *Fs) About(ctx context.Context) (*fs.Usage, error) {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
total := int64(user.MaxSpace)
|
||||
used := int64(user.UsedSpace)
|
||||
total := user.MaxSpace
|
||||
used := user.UsedSpace
|
||||
free := total - used
|
||||
|
||||
usage := &fs.Usage{
|
||||
|
Reference in New Issue
Block a user