dynamiccookies / Radarr-Assistant

An interface that ties into Radarr's API to allow searching for movies, verifying movies currently in the Radarr library, and adding movies to Radarr's queue.
MIT License
0 stars 0 forks source link

Update to Radarr broke ratings #49

Open dynamiccookies opened 1 year ago

dynamiccookies commented 1 year ago

The ratings node used to contain (#11) a single value attribute. Radarr has updated to now include separate ratings for imdb, tmdb, metacritic, and rottenTomatoes as seen below, which will need to be accounted for:

{ "imdb": { "votes": 867772, "value": 7.1, "type": "user" }, "tmdb": { "votes": 20635, "value": 6.927, "type": "user" }, "metacritic": { "votes": 0, "value": 62, "type": "user" }, "rottenTomatoes": { "votes": 0, "value": 79, "type": "user" } }

dynamiccookies commented 1 year ago

Use whichever one has the greatest votes