mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2025-02-16 22:08:25 +00:00
fixed joins
This commit is contained in:
parent
a404cc86b4
commit
a2016d81b2
1 changed files with 3 additions and 3 deletions
|
@ -296,7 +296,7 @@ class Convert:
|
|||
if tvdb:
|
||||
tvdb_id.append(tvdb)
|
||||
if not tvdb_id:
|
||||
raise Failed(f"Unable to convert TMDb ID: {', '.join(tmdb_id)} to TVDb ID")
|
||||
raise Failed(f"Unable to convert TMDb ID: {', '.join([str(t) for t in tmdb_id])} to TVDb ID")
|
||||
|
||||
if not imdb_id and tvdb_id:
|
||||
for tvdb in tvdb_id:
|
||||
|
@ -306,8 +306,8 @@ class Convert:
|
|||
|
||||
def update_cache(cache_ids, id_type, imdb_in, guid_type):
|
||||
if self.config.Cache:
|
||||
cache_ids = ",".join(cache_ids)
|
||||
imdb_in = ",".join(imdb_in) if imdb_in else None
|
||||
cache_ids = ",".join([str(c) for c in cache_ids])
|
||||
imdb_in = ",".join([str(i) for i in imdb_in]) if imdb_in else None
|
||||
ids = f"{item.guid:<46} | {id_type} ID: {cache_ids:<7} | IMDb ID: {str(imdb_in):<10}"
|
||||
logger.info(util.adjust_space(f" Cache | {'^' if expired else '+'} | {ids} | {item.title}"))
|
||||
self.config.Cache.update_guid_map(item.guid, cache_ids, imdb_in, expired, guid_type)
|
||||
|
|
Loading…
Add table
Reference in a new issue