mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04: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…
Add table
Add a link
Reference in a new issue