mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[21] fix anidb key error
This commit is contained in:
parent
8a4300b8fd
commit
b56694f6aa
4 changed files with 4 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
||||||
# Requirements Update (requirements will need to be reinstalled)
|
# Requirements Update (requirements will need to be reinstalled)
|
||||||
|
Updated PlexAPI requirement to 4.15.13
|
||||||
|
|
||||||
# Removed Features
|
# Removed Features
|
||||||
|
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.0.1-develop20
|
2.0.1-develop21
|
||||||
|
|
|
@ -109,7 +109,7 @@ class Convert:
|
||||||
ids.append((int(self.tmdb_to_tvdb(tmdb_id, fail=True)), "tvdb"))
|
ids.append((int(self.tmdb_to_tvdb(tmdb_id, fail=True)), "tvdb"))
|
||||||
except Failed:
|
except Failed:
|
||||||
pass
|
pass
|
||||||
ids.append((self._anidb_to_tmdb_movie[anidb_id], "tmdb"))
|
ids.append((self._anidb_to_tmdb_show[anidb_id], "tmdb"))
|
||||||
elif str(anidb_id) in self._anidb_ids:
|
elif str(anidb_id) in self._anidb_ids:
|
||||||
logger.warning(f"Convert Warning: No TVDb ID or IMDb ID found for AniDB ID: {anidb_id}")
|
logger.warning(f"Convert Warning: No TVDb ID or IMDb ID found for AniDB ID: {anidb_id}")
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -4,7 +4,7 @@ lxml==5.2.2
|
||||||
num2words==0.5.13
|
num2words==0.5.13
|
||||||
pathvalidate==3.2.0
|
pathvalidate==3.2.0
|
||||||
pillow==10.3.0
|
pillow==10.3.0
|
||||||
PlexAPI==4.15.12
|
PlexAPI==4.15.13
|
||||||
psutil==5.9.8
|
psutil==5.9.8
|
||||||
python-dotenv==1.0.1
|
python-dotenv==1.0.1
|
||||||
python-dateutil==2.9.0.post0
|
python-dateutil==2.9.0.post0
|
||||||
|
|
Loading…
Reference in a new issue