mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-17 15:46:22 +00:00
fix semicolon in nfo
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user