[22] Fixes #2028 TMDb IDs were being ignored on the report

This commit is contained in:
meisnate12 2024-05-20 15:39:23 -04:00
parent 486b457913
commit 176d124047
3 changed files with 3 additions and 2 deletions

View file

@ -16,5 +16,6 @@ Changed the `overlay_artwork_filetype` Setting to accept `webp_lossy` and `webp_
# Bug Fixes
Fixes #2034 `anilist_userlist` `score` attribute wasn't being validated correctly
Fixes #1367 Error when trying to symlink the logs folder
Fixes #2028 TMDb IDs were being ignored on the report
Various other Minor Fixes

View file

@ -1 +1 @@
2.0.1-develop21
2.0.1-develop22

View file

@ -242,7 +242,7 @@ class Library(ABC):
return poster_uploaded, background_uploaded
def get_id_from_maps(self, key):
key = str(key)
key = int(key)
if key in self.movie_rating_key_map:
return self.movie_rating_key_map[key]
elif key in self.show_rating_key_map: