koishi-plugin-bilibili-notify 3.2.1-alpha.3 → 3.2.1-alpha.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/lib/blive.js CHANGED
@@ -32,6 +32,8 @@ class BLive extends koishi_1.Service {
32
32
  uid: mySelfInfo.data.mid,
33
33
  },
34
34
  });
35
+ // logger
36
+ this.logger.info(`[${roomId}]开始监听直播间消息!`);
35
37
  }
36
38
  closeListener(roomId) {
37
39
  // 判断直播间监听器是否关闭
@@ -1089,9 +1089,6 @@ class ComRegister {
1089
1089
  };
1090
1090
  // 构建消息处理函数
1091
1091
  const handler = {
1092
- onStartListen: () => {
1093
- this.logger.info(`[${roomId}]开始监听直播间消息!`);
1094
- },
1095
1092
  onError: async () => {
1096
1093
  // 更直播状态
1097
1094
  liveStatus = false;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "koishi-plugin-bilibili-notify",
3
3
  "description": "Koishi bilibili notify plugin",
4
- "version": "3.2.1-alpha.3",
4
+ "version": "3.2.1-alpha.4",
5
5
  "contributors": [
6
6
  "Akokko <admin@akokko.com>"
7
7
  ],
package/readme.md CHANGED
@@ -260,6 +260,7 @@ uid为必填参数,为要推送的UP主的UID,index为可选参数,为要
260
260
  - ver 3.2.1-alpha.1 调整:将项目构建产物调整为 `esm`;
261
261
  - ver 3.2.1-alpha.2 调整:将项目构建产物调整回 `cjs` 、将依赖 `cacheable-lookup` 导入方式更改为动态导入;
262
262
  - ver 3.2.1-alpha.3 修复:直播检测 `WS` 初始化后自动断开连接;
263
+ - ver 3.2.1-alpha.4 优化:直播监听初始化没有提示;
263
264
 
264
265
  ## 交流群
265
266