mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[22] Fixes #2028 TMDb IDs were being ignored on the report
This commit is contained in:
parent
486b457913
commit
176d124047
3 changed files with 3 additions and 2 deletions
|
@ -16,5 +16,6 @@ Changed the `overlay_artwork_filetype` Setting to accept `webp_lossy` and `webp_
|
||||||
# Bug Fixes
|
# Bug Fixes
|
||||||
Fixes #2034 `anilist_userlist` `score` attribute wasn't being validated correctly
|
Fixes #2034 `anilist_userlist` `score` attribute wasn't being validated correctly
|
||||||
Fixes #1367 Error when trying to symlink the logs folder
|
Fixes #1367 Error when trying to symlink the logs folder
|
||||||
|
Fixes #2028 TMDb IDs were being ignored on the report
|
||||||
|
|
||||||
Various other Minor Fixes
|
Various other Minor Fixes
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.0.1-develop21
|
2.0.1-develop22
|
||||||
|
|
|
@ -242,7 +242,7 @@ class Library(ABC):
|
||||||
return poster_uploaded, background_uploaded
|
return poster_uploaded, background_uploaded
|
||||||
|
|
||||||
def get_id_from_maps(self, key):
|
def get_id_from_maps(self, key):
|
||||||
key = str(key)
|
key = int(key)
|
||||||
if key in self.movie_rating_key_map:
|
if key in self.movie_rating_key_map:
|
||||||
return self.movie_rating_key_map[key]
|
return self.movie_rating_key_map[key]
|
||||||
elif key in self.show_rating_key_map:
|
elif key in self.show_rating_key_map:
|
||||||
|
|
Loading…
Reference in a new issue