fix semicolon in nfo

This commit is contained in:
Luke Pulverenti 2017-01-12 14:50:52 -05:00
parent e3c5968db5
commit 584f481b6b

View file

@ -316,11 +316,11 @@ namespace MediaBrowser.XbmcMetadata.Savers
if ((stream.CodecTag ?? string.Empty).IndexOf("xvid", StringComparison.OrdinalIgnoreCase) != -1)
{
codec = "xvid;";
codec = "xvid";
}
else if ((stream.CodecTag ?? string.Empty).IndexOf("divx", StringComparison.OrdinalIgnoreCase) != -1)
{
codec = "divx;";
codec = "divx";
}
writer.WriteElementString("codec", codec);