1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Width in Kodi Metadata

This commit is contained in:
Mark McDowall 2017-05-09 19:59:37 -07:00
parent 1b32411219
commit a63248401e
No known key found for this signature in database
GPG Key ID: D4CEFA9A718052E0

View File

@ -251,7 +251,7 @@ public override MetadataFileResult EpisodeMetadata(Series series, EpisodeFile ep
video.Add(new XElement("framerate", episodeFile.MediaInfo.VideoFps));
video.Add(new XElement("height", episodeFile.MediaInfo.Height));
video.Add(new XElement("scantype", episodeFile.MediaInfo.ScanType));
video.Add(new XElement("width", episodeFile.MediaInfo.Height));
video.Add(new XElement("width", episodeFile.MediaInfo.Width));
if (episodeFile.MediaInfo.RunTime != null)
{