Merge pull request #730 from nitezs/dev

fix: 修復 Waline 最近評論的時間只顯示 "剛剛" 的問題
This commit is contained in:
Jerry Wong
2021-12-18 21:03:31 +08:00
committed by GitHub
Unverified

View File

@@ -55,7 +55,7 @@ script.
'avatar': e.avatar,
'nick': e.nick,
'url': e.url + '#' + e.objectId,
'date': e.updatedAt,
'date': e.insertedAt,
}
})
saveToLocal.set('waline-newest-comments', JSON.stringify(walineArray), !{theme.newest_comments.storage}/(60*24))