koishi-plugin-bilibili-notify 1.2.12-alpha.3 → 1.2.12
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/lib/comRegister.js +8 -0
- package/package.json +1 -1
- package/readme.md +1 -0
package/lib/comRegister.js
CHANGED
|
@@ -822,6 +822,14 @@ class ComRegister {
|
|
|
822
822
|
// 结束循环
|
|
823
823
|
break;
|
|
824
824
|
}
|
|
825
|
+
case 4101128: { // 获取动态信息错误
|
|
826
|
+
// 输出日志
|
|
827
|
+
this.logger.error('获取动态信息错误,错误码为:' + content.code + ',错误为:' + content.message);
|
|
828
|
+
// 发送私聊消息
|
|
829
|
+
await this.sendPrivateMsg(bot, '获取动态信息错误,错误码为:' + content.code + ',错误为:' + content.message); // 未知错误
|
|
830
|
+
// 结束循环
|
|
831
|
+
break;
|
|
832
|
+
}
|
|
825
833
|
default: { // 未知错误
|
|
826
834
|
// 发送私聊消息
|
|
827
835
|
await this.sendPrivateMsg(bot, '获取动态信息错误,错误码为:' + content.code + ',错误为:' + content.message); // 未知错误
|
package/package.json
CHANGED