Bump version to 1.0.2 and update page size param (#187)

* Bump version to 1.0.2 and update page size param

修复 manwaba 分页 fixes #177

* 更新 index.json
This commit is contained in:
Z-Biner
2025-11-02 15:59:18 +08:00
committed by GitHub
parent 21251d7a77
commit efb62f5fd6
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ class ManWaBa extends ComicSource {
// unique id of the source
key = "manwaba";
version = "1.0.1";
version = "1.0.2";
minAppVersion = "1.4.0";
@@ -400,7 +400,7 @@ class ManWaBa extends ComicSource {
let imageRes = await this.fetchJson(imgApi, {
params: {
...params,
pageSize: pageNum,
page_size: pageNum,
},
}).then((res) => res.data.images);
let images = imageRes.map((item) => item.url);