mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
Couple XBMC Metadata fixes
Fixed: Actor URL for XBMC Metadata Fixed: Incorrectly storing season images for XBMC metadata (cherry picked from commit 5b2c3b88c0fdf002bb46a45e85c2f5066cc84877)
This commit is contained in:
@@ -217,7 +217,7 @@ namespace NzbDrone.Core.Metadata.Consumers.Xbmc
|
||||
tvShow.Add(new XElement("actor",
|
||||
new XElement("name", actor.Name),
|
||||
new XElement("role", actor.Character),
|
||||
new XElement("thumb", actor.Images.First())
|
||||
new XElement("thumb", actor.Images.First().Url)
|
||||
));
|
||||
}
|
||||
|
||||
@@ -296,7 +296,7 @@ namespace NzbDrone.Core.Metadata.Consumers.Xbmc
|
||||
SeriesId = series.Id,
|
||||
SeasonNumber = season.SeasonNumber,
|
||||
Consumer = GetType().Name,
|
||||
Type = MetadataType.SeriesMetadata,
|
||||
Type = MetadataType.SeasonImage,
|
||||
RelativePath = DiskProviderBase.GetRelativePath(series.Path, path)
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user