mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
show_filtered fix
This commit is contained in:
parent
83ce2711cf
commit
7ae3eec54e
1 changed files with 1 additions and 1 deletions
|
@ -975,8 +975,8 @@ class Config:
|
|||
for missing_id in missing_movies:
|
||||
try:
|
||||
movie = self.TMDb.get_movie(missing_id)
|
||||
title = str(movie.title)
|
||||
if not_lang is None or (not_lang is True and movie.original_language not in terms) or (not_lang is False and movie.original_language in terms):
|
||||
title = str(movie.title)
|
||||
missing_movies_with_names.append((title, missing_id))
|
||||
logger.info("{} Collection | ? | {} (TMDb: {})".format(collection_name, title, missing_id))
|
||||
elif show_filtered is True:
|
||||
|
|
Loading…
Reference in a new issue