mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-08 18:54:26 -04:00
fix semicolon in nfo
This commit is contained in:
parent
e3c5968db5
commit
584f481b6b
@ -316,11 +316,11 @@ namespace MediaBrowser.XbmcMetadata.Savers
|
|||||||
|
|
||||||
if ((stream.CodecTag ?? string.Empty).IndexOf("xvid", StringComparison.OrdinalIgnoreCase) != -1)
|
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)
|
else if ((stream.CodecTag ?? string.Empty).IndexOf("divx", StringComparison.OrdinalIgnoreCase) != -1)
|
||||||
{
|
{
|
||||||
codec = "divx;";
|
codec = "divx";
|
||||||
}
|
}
|
||||||
|
|
||||||
writer.WriteElementString("codec", codec);
|
writer.WriteElementString("codec", codec);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user