koishi-plugin-bilibili-notify 1.2.0-alpha.2 → 1.2.0-alpha.3

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.
@@ -349,7 +349,7 @@ class ComRegister {
349
349
  // 定义满足条件的群组数组
350
350
  const targetArr = [];
351
351
  // 判断群号是否符合条件
352
- for (let guild in guildId) {
352
+ for (let guild of guildId) {
353
353
  if (guildList.data.some(cv => cv.id === guild)) { // 机器人加入了该群
354
354
  // 保存到数组
355
355
  targetArr.push(guild);
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": "1.2.0-alpha.2",
4
+ "version": "1.2.0-alpha.3",
5
5
  "contributors": [
6
6
  "Akokko <admin@akokko.com>"
7
7
  ],
package/readme.md CHANGED
@@ -103,6 +103,7 @@
103
103
  - ver 1.2.0-alpha.0 对自动更新登录信息的功能做了提升,修复了一些bug
104
104
  - ver 1.2.0-alpha.1 对推送进行了改进:在开启直播开播艾特全体成员的情况下,发送图片后才会艾特全体成员
105
105
  - ver 1.2.0-alpha.2 支持QQ群多群推送(实验性),修复了一些bug
106
+ - ver 1.2.0-alpha.3 修复了指定QQ群订阅时的一个bug
106
107
 
107
108
  ## 感谢
108
109