diff --git a/CHANGELOG.md b/CHANGELOG.md
index d9ed53c..cc004b9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## 4.9.19 - 2026-07-31
+
+- 修复 Docker / Node 自托管下 `/api/user/sync` 与 `/api/user/config` 无法从 `process.env` 读取 Upstash 凭据、持续返回 500 的问题;Redis 客户端改为按请求环境惰性创建,未配置同步时明确返回 503(#226 / PR #227)。
+- 云端恢复和历史/收藏列表渲染会过滤缺少 `videoId`、`source`、`title` 或有效 `episodeIndex` 的损坏记录;全部记录无效时正常显示空状态,不再让账户首页因渲染异常永久崩溃(#228 / PR #229)。
+- 豆瓣图片代理在 `imgN.doubanio.com` 线路不可达时按 `img9`、`img3`、`img2` 镜像回退,并保留最后一次上游响应状态,修复境外部署海报批量 500(PR #230)。
+- 新增同步记录和豆瓣镜像回退回归测试;真实 Next.js standalone + Upstash REST 兼容环境下的托管登录、同步读写与配置读写均验证通过。
+
## 4.9.18 - 2026-07-29
- 修复移动端播放器控制栏在窄屏下被裁切、最右侧“系统全屏”按钮不可见的问题(#224)。
diff --git a/app-release.json b/app-release.json
index 5a6b90d..cb28c16 100644
--- a/app-release.json
+++ b/app-release.json
@@ -4,8 +4,19 @@
"name": "KVideo",
"branch": "main"
},
- "currentVersion": "4.9.18",
+ "currentVersion": "4.9.19",
"releases": [
+ {
+ "version": "4.9.19",
+ "publishedAt": "2026-07-31",
+ "title": "修复自托管同步与豆瓣海报回退",
+ "notes": [
+ "修复 Docker / Node 自托管下用户同步与配置接口无法从 process.env 读取 Upstash 凭据、持续返回 500 的问题(#226 / PR #227)。",
+ "云端恢复与列表渲染会丢弃缺少 videoId、source、title 或有效 episodeIndex 的损坏记录,避免账户首页被永久崩溃数据锁死(#228 / PR #229)。",
+ "豆瓣图片代理会在 imgN.doubanio.com 线路不可达时按镜像回退,并保留上游最终状态码,修复境外部署海报批量 500(PR #230)。",
+ "新增同步记录与豆瓣镜像回退回归测试,并通过真实 Next.js standalone + Upstash REST 兼容环境的登录、同步和配置读写验证。"
+ ]
+ },
{
"version": "4.9.18",
"publishedAt": "2026-07-29",
diff --git a/app/api/douban/image/route.ts b/app/api/douban/image/route.ts
index 2a8bc70..b11c62b 100644
--- a/app/api/douban/image/route.ts
+++ b/app/api/douban/image/route.ts
@@ -1,4 +1,5 @@
import { NextResponse } from 'next/server';
+import { buildDoubanImageCandidates } from '@/lib/server/douban-image';
export const runtime = 'edge';
@@ -9,33 +10,6 @@ const REQUEST_HEADERS = {
Referer: 'https://movie.douban.com/',
};
-// 豆瓣的 imgN.doubanio.com 互为镜像,但各自解析到不同线路。部分线路(例如 img1
-// 的国内 IP)在境外主机上不可达,fetch 会直接抛错而不是返回状态码,海报因此变成
-// 500。同一路径换个镜像通常就能取到,所以失败时按顺序回退。
-const DOUBAN_IMAGE_HOSTS = ['img9.doubanio.com', 'img3.doubanio.com', 'img2.doubanio.com'];
-
-function buildCandidates(rawUrl: string): string[] {
- const candidates = [rawUrl];
-
- try {
- const parsed = new URL(rawUrl);
- if (!/^img\d+\.doubanio\.com$/.test(parsed.hostname)) {
- return candidates;
- }
-
- for (const host of DOUBAN_IMAGE_HOSTS) {
- if (host === parsed.hostname) continue;
- const alternate = new URL(parsed.toString());
- alternate.hostname = host;
- candidates.push(alternate.toString());
- }
- } catch {
- // 非法 URL 留给 fetch 去报错
- }
-
- return candidates;
-}
-
export async function GET(request: Request) {
const { searchParams } = new URL(request.url);
const imageUrl = searchParams.get('url');
@@ -47,7 +21,7 @@ export async function GET(request: Request) {
let lastStatus = 502;
let lastError = 'Error fetching image';
- for (const candidate of buildCandidates(imageUrl)) {
+ for (const candidate of buildDoubanImageCandidates(imageUrl)) {
let imageResponse: Response;
try {
diff --git a/components/favorites/FavoritesList.tsx b/components/favorites/FavoritesList.tsx
index ff8a058..9be1b23 100644
--- a/components/favorites/FavoritesList.tsx
+++ b/components/favorites/FavoritesList.tsx
@@ -14,13 +14,15 @@ interface FavoritesListProps {
}
export function FavoritesList({ favorites, onRemove, isPremium = false }: FavoritesListProps) {
- if (favorites.length === 0) {
+ const renderableFavorites = keepRenderableFavorites(favorites);
+
+ if (renderableFavorites.length === 0) {
return