1
mirror of https://github.com/rclone/rclone synced 2024-10-05 12:39:53 +02:00

b2: Fix incorrect value of Precision - should be 1ms not 1s

This commit is contained in:
Nick Craig-Wood 2016-03-24 15:23:27 +00:00
parent 02c11dd4a7
commit 93c60c34e1

View File

@ -615,7 +615,7 @@ func (f *Fs) Rmdir() error {
// Precision of the remote // Precision of the remote
func (f *Fs) Precision() time.Duration { func (f *Fs) Precision() time.Duration {
return time.Second return time.Millisecond
} }
// deleteByID deletes a file version given Name and ID // deleteByID deletes a file version given Name and ID