change newline value

This commit is contained in:
Luis Miguel Almánzar
2014-08-24 18:02:47 -04:00
parent d92936187d
commit 0cb3c39636
5 changed files with 5 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
var text = trackEvent.Text;
// TODO: Not sure how to handle these
text = Regex.Replace(text, @"\\N", " ", RegexOptions.IgnoreCase);
text = Regex.Replace(text, @"\\n", " ", RegexOptions.IgnoreCase);
writer.WriteLine(text);
writer.WriteLine(string.Empty);