@wahaha216/koishi-plugin-jmcomic 0.2.7 → 0.2.8
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 +6 -4
- package/package.json +1 -1
- package/readme.md +9 -0
package/lib/index.js
CHANGED
|
@@ -65,10 +65,10 @@ var JM_SCRAMBLE_ID = /var scramble_id = (\d+);/;
|
|
|
65
65
|
|
|
66
66
|
// src/utils/Const.ts
|
|
67
67
|
var JM_CLIENT_URL_LIST = [
|
|
68
|
-
"www.
|
|
69
|
-
"www.
|
|
70
|
-
"www.
|
|
71
|
-
"www.
|
|
68
|
+
"www.cdnaspa.vip",
|
|
69
|
+
"www.cdnaspa.club",
|
|
70
|
+
"www.cdnplaystation6.vip",
|
|
71
|
+
"www.cdnplaystation6.cc"
|
|
72
72
|
];
|
|
73
73
|
var JM_IMAGE_URL_LIST = [
|
|
74
74
|
"cdn-msp.jmapiproxy1.cc",
|
|
@@ -933,6 +933,8 @@ var JMAppClient = class _JMAppClient extends JMClientAbstract {
|
|
|
933
933
|
const photo = await this.getPhotoById(id);
|
|
934
934
|
photos.push(photo);
|
|
935
935
|
}
|
|
936
|
+
if (this.config.debug)
|
|
937
|
+
this.logger.info(`本子 ${id} 章节数:${photos.length}`);
|
|
936
938
|
album.setPhotos(photos);
|
|
937
939
|
return album;
|
|
938
940
|
}
|
package/package.json
CHANGED