mirror of
https://github.com/rclone/rclone.git
synced 2024-12-23 07:29:35 +01:00
Fix after goamz interface change
This commit is contained in:
parent
4cda51b77a
commit
717a0d268b
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,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user