Fix qiniu last modify time. (#691)
This commit is contained in:
parent
f35ad3fe0a
commit
488e62f762
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ func (handler Driver) List(ctx context.Context, base string, recursive bool) ([]
|
||||||
RelativePath: filepath.ToSlash(rel),
|
RelativePath: filepath.ToSlash(rel),
|
||||||
Size: uint64(object.Fsize),
|
Size: uint64(object.Fsize),
|
||||||
IsDir: false,
|
IsDir: false,
|
||||||
LastModify: time.Now(),
|
LastModify: time.Unix(object.PutTime/10000000, 0),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue