fix BestFilmVersion 名称判断

This commit is contained in:
mayun110 2023-08-14 19:17:01 +08:00
parent 9e37068b75
commit f9fc75af16

View File

@ -676,7 +676,7 @@ class BestFilmVersion(_PluginBase):
# 读取缓存
caches = self._cache_path.read_text().split("\n") if self._cache_path.exists() else []
# 检查缓存
if mediainfo.title in caches:
if data.item_name in caches:
return
# 读取历史记录
history = self.get_data('history') or []