From 6417609dd38c15a6b7addfe9fc617d110300f4b5 Mon Sep 17 00:00:00 2001 From: mtvpls Date: Thu, 25 Sep 2025 03:20:32 +0800 Subject: [PATCH] Update page.tsx --- src/app/page.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f364e69..8c82eb5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -379,11 +379,12 @@ function HomeClient() { from='douban' title={anime.name_cn || anime.name} poster={ - anime.images.large || - anime.images.common || - anime.images.medium || - anime.images.small || - anime.images.grid + anime.images?.large || + anime.images?.common || + anime.images?.medium || + anime.images?.small || + anime.images?.grid || + '' } douban_id={anime.id} rate={anime.rating?.score?.toFixed(1) || ''}