fix: 修復 Waline 最近評論的時間只顯示 "剛剛" 的問題

This commit is contained in:
nitezs
2021-12-16 17:19:18 +08:00
parent 444081846c
commit 002692886c

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))