From a677ed307d178828081241e416b5b3ad3653a164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=99=AF=E5=A4=A7=E4=BE=A0?= Date: Sun, 18 Jan 2026 16:18:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20=E5=89=A7=E9=9B=86nfo?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=88=AE=E5=89=8A=E4=BA=86=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E7=9A=84tmdb=20id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 应使用剧集id而非剧id --- app/modules/themoviedb/scraper.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/modules/themoviedb/scraper.py b/app/modules/themoviedb/scraper.py index ef9ccafc..03a5e09f 100644 --- a/app/modules/themoviedb/scraper.py +++ b/app/modules/themoviedb/scraper.py @@ -297,7 +297,8 @@ class TmdbScraper: uniqueid.setAttribute("type", "tmdb") uniqueid.setAttribute("default", "true") # tmdbid - DomUtils.add_node(doc, root, "tmdbid", str(tmdbid)) + # 应与uniqueid一致 使用剧集id 否则jellyfin/emby会将此id覆盖上面的uniqueid + DomUtils.add_node(doc, root, "tmdbid", str(episodeinfo.get("id"))) # 标题 DomUtils.add_node(doc, root, "title", episodeinfo.get("name") or "第 %s 集" % episode) # 简介