Skip to content

Commit

Permalink
fix radarr images - Found image url in dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
petersem committed Nov 29, 2023
1 parent 0900ed3 commit 01b9975
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion classes/arr/radarr.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,10 @@ class Radarr {
// check art exists
md.images.forEach(i => {
if(i.coverType == "poster"){
url = i.url;
url = i.remoteUrl;
}
});

if (url !== undefined) {
await core.CacheImage(url, fileName);
medCard.posterURL = "/imagecache/" + fileName;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posterr",
"version": "1.16.4",
"version": "1.16.5",
"description": "A digital display for your media",
"main": "index.js",
"bin": "index.js",
Expand Down

0 comments on commit 01b9975

Please sign in to comment.