From f05c1f42b5e6c7ba432466fe07d9f21393a2f3cf Mon Sep 17 00:00:00 2001 From: PKC278 <52959804+PKC278@users.noreply.github.com> Date: Sun, 12 Apr 2026 09:52:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=8E=A8=E8=8D=90?= =?UTF-8?q?=E5=92=8C=E6=8E=A2=E7=B4=A2=E9=A1=B5=E9=9D=A2=E7=94=B5=E8=A7=86?= =?UTF-8?q?=E5=89=A7=E5=B7=B2=E5=85=A5=E5=BA=93=E6=A0=87=E8=AF=86=E4=B8=8D?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/cards/MediaCard.vue | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/components/cards/MediaCard.vue b/src/components/cards/MediaCard.vue index d131a7e9..5fb8642a 100644 --- a/src/components/cards/MediaCard.vue +++ b/src/components/cards/MediaCard.vue @@ -237,14 +237,6 @@ async function handleCheckSubscribe() { // 查询当前媒体是否已入库 async function handleCheckExists() { try { - // 对于总集数为 0 的电视剧季(TMDB 未返回有效集数),不展示“已入库”角标,避免误判 - const totalEpisode = props.media?.total_episode ?? props.media?.episode_count ?? props.media?.number_of_episodes ?? 0 - - if (props.media?.type === '电视剧' && totalEpisode === 0) { - isExists.value = false - return - } - const result: { [key: string]: any } = await api.get('mediaserver/exists', { params: { tmdbid: props.media?.tmdb_id,