[fix] proj.comments false (#430)

* [fix] proj.comments false

* [fix] page.comments false
This commit is contained in:
星日语 2024-04-10 10:26:26 +08:00 committed by GitHub
parent c40ac638b5
commit 7a5b95f230
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 13 additions and 8 deletions

View File

@ -14,15 +14,20 @@ if (theme.comments.service && theme.comments.service.length > 0) {
// 合并项目评论
const proj = theme.wiki.tree[page.wiki]
if (loadComment && (proj != null)) {
if (proj.comment_title != undefined && page.comment_title == undefined) {
if (['utterances', 'beaudar', 'giscus'].includes(theme.comments.service)) {
page.comment_title = proj.comment_title;
if (proj.comments === false) {
loadComment = false;
page.comments = false;
} else {
if (proj.comment_title != undefined && page.comment_title == undefined) {
if (['utterances', 'beaudar', 'giscus'].includes(theme.comments.service)) {
page.comment_title = proj.comment_title;
}
}
if (proj.comments && proj.comments.service) {
cmt = proj.comments;
let s = proj.comments.service;
cmt[s] = Object.assign({}, theme.comments[s], proj.comments[s]);
}
}
if (proj.comments && proj.comments.service) {
cmt = proj.comments;
let s = proj.comments.service;
cmt[s] = Object.assign({}, theme.comments[s], proj.comments[s]);
}
}
if (cmt.service && page[cmt.service]) {