From efb62f5fd6ad58d09f642578d378aea971163ec1 Mon Sep 17 00:00:00 2001 From: Z-Biner <1513360639@qq.com> Date: Sun, 2 Nov 2025 15:59:18 +0800 Subject: [PATCH] Bump version to 1.0.2 and update page size param (#187) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump version to 1.0.2 and update page size param 修复 manwaba 分页 fixes #177 * 更新 index.json --- index.json | 2 +- manwaba.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.json b/index.json index c951f1c..68e19bb 100644 --- a/index.json +++ b/index.json @@ -102,7 +102,7 @@ "name": "漫蛙吧", "fileName": "manwaba.js", "key": "manwaba", - "version": "1.0.1" + "version": "1.0.2" }, { "name": "Lanraragi", diff --git a/manwaba.js b/manwaba.js index 4cadbf4..48478ab 100644 --- a/manwaba.js +++ b/manwaba.js @@ -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);