mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Images in XML use the path to the image now.
This commit is contained in:
@@ -55,7 +55,7 @@ namespace NzbDrone.Core.Providers.Metadata
|
|||||||
tvShow.Add(new XElement("actor",
|
tvShow.Add(new XElement("actor",
|
||||||
new XElement("name", actor.Name),
|
new XElement("name", actor.Name),
|
||||||
new XElement("role", actor.Role),
|
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",
|
details.Add(new XElement("actor",
|
||||||
new XElement("name", actor.Name),
|
new XElement("name", actor.Name),
|
||||||
new XElement("role", actor.Role),
|
new XElement("role", actor.Role),
|
||||||
new XElement("thumb", actor.ActorImage)
|
new XElement("thumb", actor.ActorImage.BannerPath)
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user