fix: douban list url

This commit is contained in:
shinya
2025-07-31 01:18:28 +08:00
parent 7b6867ed58
commit 9d0acf6308
3 changed files with 3 additions and 3 deletions

View File

@@ -163,7 +163,7 @@ export async function getDoubanList(
return fetchDoubanList(params);
} else {
const response = await fetch(
`/api/douban?tag=${tag}&type=${type}&limit=${pageLimit}&start=${pageStart}`
`/api/douban?tag=${tag}&type=${type}&pageSize=${pageLimit}&pageStart=${pageStart}`
);
if (!response.ok) {

View File

@@ -2,7 +2,7 @@
'use client';
const CURRENT_VERSION = '20250731010759';
const CURRENT_VERSION = '20250731011829';
// 版本检查结果枚举
export enum UpdateStatus {