box: Calculate Free amount in About call

This commit is contained in:
Nick Craig-Wood 2020-05-25 16:47:34 +01:00
parent 1bd3365868
commit c08617c70f
1 changed files with 3 additions and 2 deletions

View File

@ -900,8 +900,9 @@ func (f *Fs) About(ctx context.Context) (usage *fs.Usage, err error) {
}
// FIXME max upload size would be useful to use in Update
usage = &fs.Usage{
Used: fs.NewUsageValue(user.SpaceUsed), // bytes in use
Total: fs.NewUsageValue(user.SpaceAmount), // bytes total
Used: fs.NewUsageValue(user.SpaceUsed), // bytes in use
Total: fs.NewUsageValue(user.SpaceAmount), // bytes total
Free: fs.NewUsageValue(user.SpaceAmount - user.SpaceUsed), // bytes free
}
return usage, nil
}