jottacloud: minor improvement in quota info (omit if unlimited)
This commit is contained in:
parent
22ee4151fd
commit
a1f935e815
2 changed files with 10 additions and 1 deletions
|
@ -666,9 +666,12 @@ func (f *Fs) About() (*fs.Usage, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
usage := &fs.Usage{
|
usage := &fs.Usage{
|
||||||
Total: fs.NewUsageValue(info.Capacity),
|
|
||||||
Used: fs.NewUsageValue(info.Usage),
|
Used: fs.NewUsageValue(info.Usage),
|
||||||
}
|
}
|
||||||
|
if info.Capacity > 0 {
|
||||||
|
usage.Total = fs.NewUsageValue(info.Capacity)
|
||||||
|
usage.Free = fs.NewUsageValue(info.Capacity - info.Usage)
|
||||||
|
}
|
||||||
return usage, nil
|
return usage, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -105,6 +105,12 @@ Any files you delete with rclone will end up in the trash. Due to a lack of API
|
||||||
|
|
||||||
Jottacloud supports file versioning. When rclone uploads a new version of a file it creates a new version of it. Currently rclone only supports retrieving the current version but older versions can be accessed via the Jottacloud Website.
|
Jottacloud supports file versioning. When rclone uploads a new version of a file it creates a new version of it. Currently rclone only supports retrieving the current version but older versions can be accessed via the Jottacloud Website.
|
||||||
|
|
||||||
|
### Quota information ###
|
||||||
|
|
||||||
|
To view your current quota you can use the `rclone about remote:`
|
||||||
|
command which will display your usage limit (unless it is unlimited)
|
||||||
|
and the current usage.
|
||||||
|
|
||||||
### Limitations ###
|
### Limitations ###
|
||||||
|
|
||||||
Note that Jottacloud is case insensitive so you can't have a file called
|
Note that Jottacloud is case insensitive so you can't have a file called
|
||||||
|
|
Loading…
Reference in a new issue