From 3394a25d6c64f5e365cdce43aae4a32dadcebf5d Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Mon, 24 Jul 2023 10:46:55 -0400 Subject: [PATCH] [76] read legacy settings --- VERSION | 2 +- modules/plex.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index eb4e05d4..70cd8b70 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.19.0-develop75 +1.19.0-develop76 diff --git a/modules/plex.py b/modules/plex.py index 9fac14bd..b356d1ac 100644 --- a/modules/plex.py +++ b/modules/plex.py @@ -483,7 +483,7 @@ class Plex(Library): self._account = None self.agent = self.Plex.agent self.scanner = self.Plex.scanner - self.ratings_source = next((s.value for s in self.Plex.settings() if s.id == "ratingsSource"), "N/A") + self.ratings_source = next((s.label for s in self.Plex.settings() if s.id in ["ratings", "ratingsSource"]), "N/A") self.is_movie = self.type == "Movie" self.is_show = self.type == "Show" self.is_music = self.type == "Artist"