mirror of
https://github.com/rclone/rclone.git
synced 2026-01-11 04:53:15 +00:00
Fix after goamz interface change
This commit is contained in:
3
fs_s3.go
3
fs_s3.go
@@ -202,10 +202,9 @@ func (f *FsS3) ListDir() FsDirChan {
|
||||
log.Printf("Couldn't list buckets: %s", err)
|
||||
} else {
|
||||
for _, bucket := range buckets {
|
||||
when, _ := time.Parse(time.RFC3339, bucket.CreationDate)
|
||||
out <- &FsDir{
|
||||
Name: bucket.Name,
|
||||
When: when,
|
||||
When: bucket.CreationDate,
|
||||
Bytes: -1,
|
||||
Count: -1,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user