mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-26 07:03:57 +02:00
fix semicolon in nfo
This commit is contained in:
parent
e3c5968db5
commit
584f481b6b
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue