@waline/vercel 1.18.3 → 1.18.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -2
- package/package.json +1 -1
- package/src/config/config.js +1 -1
- package/src/controller/comment.js +9 -2
- package/src/controller/db.js +2 -2
- package/src/controller/oauth.js +1 -1
- package/src/controller/rest.js +1 -1
- package/src/controller/user.js +1 -1
- package/src/service/storage/github.js +1 -1
- package/vanilla.js +1 -1
package/index.js
CHANGED
package/package.json
CHANGED
package/src/config/config.js
CHANGED
|
@@ -92,7 +92,7 @@ const markdown = {
|
|
|
92
92
|
|
|
93
93
|
if (isFalse(MARKDOWN_HIGHLIGHT)) markdown.config.highlight = false;
|
|
94
94
|
|
|
95
|
-
let avatarProxy = '
|
|
95
|
+
let avatarProxy = '';
|
|
96
96
|
if (AVATAR_PROXY) {
|
|
97
97
|
avatarProxy = !isFalse(AVATAR_PROXY) ? AVATAR_PROXY : '';
|
|
98
98
|
}
|
|
@@ -556,7 +556,10 @@ module.exports = class extends BaseRest {
|
|
|
556
556
|
|
|
557
557
|
if (comment.status !== 'spam') {
|
|
558
558
|
const notify = this.service('notify');
|
|
559
|
-
await notify.run(
|
|
559
|
+
await notify.run(
|
|
560
|
+
{ ...resp, comment: markdownParser(resp.comment), rawComment: comment },
|
|
561
|
+
{ ...parentComment, comment: markdownParser(parentComment.comment) }
|
|
562
|
+
);
|
|
560
563
|
}
|
|
561
564
|
|
|
562
565
|
think.logger.debug(`Comment notify done!`);
|
|
@@ -616,7 +619,11 @@ module.exports = class extends BaseRest {
|
|
|
616
619
|
pComment = pComment[0];
|
|
617
620
|
|
|
618
621
|
const notify = this.service('notify');
|
|
619
|
-
await notify.run(
|
|
622
|
+
await notify.run(
|
|
623
|
+
{ ...newData, comment: markdownParser(newData.comment) },
|
|
624
|
+
{ ...pComment, comment: markdownParser(pComment.comment) },
|
|
625
|
+
true
|
|
626
|
+
);
|
|
620
627
|
}
|
|
621
628
|
|
|
622
629
|
await this.hook('postUpdate', data);
|
package/src/controller/db.js
CHANGED
package/src/controller/oauth.js
CHANGED
package/src/controller/rest.js
CHANGED
package/src/controller/user.js
CHANGED
package/vanilla.js
CHANGED