This commit is contained in:
Ma 2023-11-01 07:43:49 +08:00 committed by GitHub
parent eea5c056f3
commit dd6df471dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@ class ChainBase(metaclass=ABCMeta):
if not tmdbid and hasattr(meta, "tmdbid"):
# 识别用名中含指定信息情形
tmdbid = meta.tmdbid
if meta.type in [MediaType.TV, MediaType.MOVIE]:
if not mtype and meta.type in [MediaType.TV, MediaType.MOVIE]:
mtype = meta.type
return self.run_module("recognize_media", meta=meta, mtype=mtype, tmdbid=tmdbid)