Merge pull request #897 from kkfive/patch-1

perf: 优化twikoo评论,无评论数容器时不调用API获取
pull/907/head
Jerry Wong 2 years ago committed by GitHub
commit b1e40b33d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,13 +15,15 @@ script.
}
const getCount = () => {
const countELement = document.getElementById('twikoo-count')
if(!countELement) return
twikoo.getCommentsCount({
envId: '!{envId}',
region: '!{region}',
urls: [window.location.pathname],
includeReply: false
}).then(function (res) {
document.getElementById('twikoo-count').innerText = res[0].count
countELement.innerText = res[0].count
}).catch(function (err) {
console.error(err);
});
@ -48,4 +50,4 @@ script.
loadTwikoo()
}
}
})()
})()

Loading…
Cancel
Save