koishi-plugin-bilibili-notify 3.3.4-alpha.1 → 3.3.4-alpha.2

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/index.js CHANGED
@@ -881,7 +881,7 @@ var ComRegister = class {
881
881
  if (bot.status !== koishi.Universal.Status.ONLINE) {
882
882
  this.logger.error(`${platform} 机器人未初始化完毕,无法进行推送,${retry / 1e3}秒后重试`);
883
883
  this.ctx.setTimeout(async () => {
884
- await this.pushMessage(targets, retry * 2);
884
+ await this.pushMessage(targets, content, retry * 2);
885
885
  }, retry);
886
886
  return;
887
887
  }
package/lib/index.mjs CHANGED
@@ -862,7 +862,7 @@ var ComRegister = class {
862
862
  if (bot.status !== Universal.Status.ONLINE) {
863
863
  this.logger.error(`${platform} 机器人未初始化完毕,无法进行推送,${retry / 1e3}秒后重试`);
864
864
  this.ctx.setTimeout(async () => {
865
- await this.pushMessage(targets, retry * 2);
865
+ await this.pushMessage(targets, content, retry * 2);
866
866
  }, retry);
867
867
  return;
868
868
  }
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.3.4-alpha.1",
4
+ "version": "3.3.4-alpha.2",
5
5
  "main": "./lib/index.js",
6
6
  "typings": "lib/index.d.ts",
7
7
  "files": [
package/readme.md CHANGED
@@ -335,7 +335,8 @@ uid为必填参数,为要推送的UP主的UID,index为可选参数,为要
335
335
  > - ver 3.3.2 修复:当插件因动态报错停止后,应使用指令 `bn start` 启动插件,而不是 `bn restart`;
336
336
  > - ver 3.3.3 优化:初始化logger输出; 修复:B站订阅操作bug;
337
337
  > - ver 3.3.4-alpha.0 优化:在错误消息向主人帐号推送前会先进行机器人状态判断; 重构:部分重构消息发送逻辑;
338
- > - ver 3.3.4-alpha.1 修复CI错误;
338
+ > - ver 3.3.4-alpha.1 修复: CI错误;
339
+ > - ver 3.3.4-alpha.2 修复: 推送消息时发送6000的bug;
339
340
 
340
341
  ## 交流群
341
342