Fix: TMDB 剧集详情页不显示第 0 季(特别篇) #5444

This commit is contained in:
CHANTXU64
2026-02-02 10:28:22 +08:00
parent 7b8cd37a9b
commit 4e74d32882
4 changed files with 8 additions and 8 deletions

View File

@@ -101,7 +101,7 @@ def not_exists(media_in: schemas.MediaInfo,
mtype = MediaType(media_in.type) if media_in.type else None
if mtype:
meta.type = mtype
if media_in.season:
if media_in.season is not None:
meta.begin_season = media_in.season
meta.type = MediaType.TV
if media_in.year: