From 176d12404740751434d4794ee25d8a294170df9e Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Mon, 20 May 2024 15:39:23 -0400 Subject: [PATCH] [22] Fixes #2028 TMDb IDs were being ignored on the report --- CHANGELOG | 1 + VERSION | 2 +- modules/library.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7d9278d9..41a5f4db 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 \ No newline at end of file diff --git a/VERSION b/VERSION index cc386e51..6ddb7cf7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.1-develop21 +2.0.1-develop22 diff --git a/modules/library.py b/modules/library.py index 7376acc0..f77b57f9 100644 --- a/modules/library.py +++ b/modules/library.py @@ -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: