mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 09:49:00 +00:00
Images in XML use the path to the image now.
This commit is contained in:
parent
cfd923f471
commit
f296f38742
1 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@ public override void CreateForSeries(Series series, TvdbSeries tvDbSeries)
|
|||
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 @@ public override void CreateForEpisodeFile(EpisodeFile episodeFile, TvdbSeries tv
|
|||
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…
Reference in a new issue