mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-23 04:53:07 +00:00
checked wrong map
This commit is contained in:
parent
f3ae3967b6
commit
f8f2c9d745
1 changed files with 2 additions and 1 deletions
|
@ -1374,7 +1374,8 @@ class CollectionBuilder:
|
|||
filter_attr, modifier, filter_final = self._split(filter_method)
|
||||
filter_actual = filter_translation[filter_attr] if filter_attr in filter_translation else filter_attr
|
||||
if filter_attr in ["tmdb_vote_count", "original_language", "last_episode_aired"]:
|
||||
if current.ratingKey not in self.library.movie_rating_key_map:
|
||||
if (self.library.is_movie and current.ratingKey not in self.library.movie_rating_key_map) \
|
||||
or (self.library.is_show and current.ratingKey not in self.library.show_rating_key_map):
|
||||
logger.warning(f"Filter Error: No TMDb ID found for {current.title}")
|
||||
continue
|
||||
if self.library.is_movie:
|
||||
|
|
Loading…
Reference in a new issue