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.
- package/lib/comRegister.js +1 -1
- package/package.json +1 -1
- package/readme.md +1 -0
package/lib/comRegister.js
CHANGED
|
@@ -349,7 +349,7 @@ class ComRegister {
|
|
|
349
349
|
// 定义满足条件的群组数组
|
|
350
350
|
const targetArr = [];
|
|
351
351
|
// 判断群号是否符合条件
|
|
352
|
-
for (let guild
|
|
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