mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-02-02 11:08:13 -05:00
🐛 Fix: fix qiniu file modified time error
This commit is contained in:
parent
23652d92de
commit
681da4af47
@ -53,7 +53,7 @@ class QiniuApi {
|
||||
fileName: item.key.replace(slicedPrefix, ''),
|
||||
url: `${urlPrefix}/${item.key}`,
|
||||
fileSize: item.fsize,
|
||||
formatedTime: new Date(parseInt(item.putTime.toString().slice(0, -7), 10)).toLocaleString(),
|
||||
formatedTime: new Date(parseInt(item.putTime.toString().slice(0, -4), 10)).toLocaleString(),
|
||||
isDir: false,
|
||||
checked: false,
|
||||
match: false,
|
||||
|
Loading…
Reference in New Issue
Block a user