fix: 修复serverchan3 没有选择tags报错的bug

This commit is contained in:
xiaojunnuo
2025-12-29 15:45:42 +08:00
parent 039c62b09b
commit 5bbf210394

View File

@@ -56,7 +56,7 @@ export class ServerChan3Notification extends BaseNotification {
data: {
text: body.title,
desp: body.content + '\n\n[查看详情](' + body.url + ')',
tags: this.tags.join('|'),
tags: this.tags?.join('|') || undefined,
short: this.short,
},
skipSslVerify: this.skipSslVerify,