This commit is contained in:
JonnyWong16 2024-03-01 00:08:59 -08:00 committed by GitHub
parent a6f7fa2ffd
commit f9a2e28ab6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,7 +46,7 @@ PLEX_TOKEN = PLEX_TOKEN or os.getenv('PLEX_TOKEN', PLEX_TOKEN)
def select_tmdb_poster_library(library, include_locked=False): def select_tmdb_poster_library(library, include_locked=False):
for item in library.all(includeGuids=False): for item in library.all(includeGuids=False):
# Only reload for fields # Only reload for fields
item.reload(**{k: 0 for k, v in movie._INDLUCES.items()}) item.reload(**{k: 0 for k, v in item._INDLUCES.items()})
select_tmdb_poster_item(item, include_locked=include_locked) select_tmdb_poster_item(item, include_locked=include_locked)