修复 Artalk 无法获取最新评论的 bug

This commit is contained in:
nite07
2023-04-26 12:58:40 +08:00
parent 496234c8ad
commit 096973ecce

View File

@@ -53,7 +53,16 @@ script.
}
const getComment = () => {
fetch('!{server}/api/stat?type=latest_comments&limit=!{theme.newest_comments.limit}&site_name=!{site}', headerList)
fetch('!{server}/api/stat', Object.assign({
headers:{
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams({
'site_name': '!{site}',
'limit': '!{theme.newest_comments.limit}',
'type':'latest_comments'
})
}, headerList))
.then(response => response.json())
.then(d => {
const artalk = d.data.map(function (e) {