koishi-plugin-bilibili-notify 3.2.5-alpha.6 → 3.2.5-alpha.7
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 +1 -1
- package/lib/index.mjs +1 -1
- package/package.json +1 -1
- package/readme.md +2 -0
package/lib/index.js
CHANGED
|
@@ -728,7 +728,6 @@ var ComRegister = class {
|
|
|
728
728
|
}
|
|
729
729
|
}
|
|
730
730
|
this.initManager();
|
|
731
|
-
this.initPushRecord(this.subManager);
|
|
732
731
|
this.checkIfDynamicDetectIsNeeded();
|
|
733
732
|
this.checkIfLiveDetectIsNeeded();
|
|
734
733
|
this.updateSubNotifier();
|
|
@@ -1513,6 +1512,7 @@ var ComRegister = class {
|
|
|
1513
1512
|
return await subUserMatchPattern[subUserData.code]();
|
|
1514
1513
|
}
|
|
1515
1514
|
async loadSubFromConfig(subs) {
|
|
1515
|
+
this.initPushRecord(subs);
|
|
1516
1516
|
for (const sub of subs) {
|
|
1517
1517
|
this.logger.info(`加载订阅UID:${sub.uid}中...`);
|
|
1518
1518
|
const { code: userInfoCode, msg: userInfoMsg, data: userInfoData } = await withRetry(async () => {
|
package/lib/index.mjs
CHANGED
|
@@ -730,7 +730,6 @@ var ComRegister = class {
|
|
|
730
730
|
}
|
|
731
731
|
}
|
|
732
732
|
this.initManager();
|
|
733
|
-
this.initPushRecord(this.subManager);
|
|
734
733
|
this.checkIfDynamicDetectIsNeeded();
|
|
735
734
|
this.checkIfLiveDetectIsNeeded();
|
|
736
735
|
this.updateSubNotifier();
|
|
@@ -1515,6 +1514,7 @@ var ComRegister = class {
|
|
|
1515
1514
|
return await subUserMatchPattern[subUserData.code]();
|
|
1516
1515
|
}
|
|
1517
1516
|
async loadSubFromConfig(subs) {
|
|
1517
|
+
this.initPushRecord(subs);
|
|
1518
1518
|
for (const sub of subs) {
|
|
1519
1519
|
this.logger.info(`加载订阅UID:${sub.uid}中...`);
|
|
1520
1520
|
const { code: userInfoCode, msg: userInfoMsg, data: userInfoData } = await withRetry(async () => {
|
package/package.json
CHANGED