Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/f296f38742ed598872c40a37baf30f8750efc982 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Images in XML use the path to the image now.

pull/2/head
Mark McDowall 13 years ago
parent cfd923f471
commit f296f38742

@ -55,7 +55,7 @@ namespace NzbDrone.Core.Providers.Metadata
tvShow.Add(new XElement("actor",
new XElement("name", actor.Name),
new XElement("role", actor.Role),
new XElement("thumb", actor.ActorImage)
new XElement("thumb", actor.ActorImage.BannerPath)
));
}
@ -174,7 +174,7 @@ namespace NzbDrone.Core.Providers.Metadata
details.Add(new XElement("actor",
new XElement("name", actor.Name),
new XElement("role", actor.Role),
new XElement("thumb", actor.ActorImage)
new XElement("thumb", actor.ActorImage.BannerPath)
));
}

Loading…
Cancel
Save