mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[161] fix tvdb movies
This commit is contained in:
parent
9d736609ee
commit
2e9b0702be
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.17.3-develop160
|
||||
1.17.3-develop161
|
||||
|
|
|
@ -191,7 +191,7 @@ class TVDb:
|
|||
logger.error(f"{e} for series {title}")
|
||||
elif item_url.startswith("/movies/"):
|
||||
try:
|
||||
_, tmdb_id, imdb_id = self.get_id_from_url(f"{base_url}{item_url}")
|
||||
_, tmdb_id, imdb_id = self.get_id_from_url(f"{base_url}{item_url}", is_movie=True)
|
||||
if tmdb_id:
|
||||
ids.append((tmdb_id, "tmdb"))
|
||||
elif imdb_id:
|
||||
|
|
Loading…
Reference in a new issue