diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-08-24 23:54:53 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-08-24 23:54:53 -0400 |
| commit | 73082a0449bcab1a9ed2932a8fe8af81dd88febc (patch) | |
| tree | 68913d2a12b27ec80b0b8b8f4587b020d6b3ab1b /MediaBrowser.MediaEncoding/Subtitles/SsaParser.cs | |
| parent | 84062573496db136fb011c598fee7b3de129e070 (diff) | |
| parent | 6faca263a84996bd9964eafaa636c95b4cb57f64 (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.MediaEncoding/Subtitles/SsaParser.cs')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Subtitles/SsaParser.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Subtitles/SsaParser.cs b/MediaBrowser.MediaEncoding/Subtitles/SsaParser.cs index 4b11d55ce..559a05bc8 100644 --- a/MediaBrowser.MediaEncoding/Subtitles/SsaParser.cs +++ b/MediaBrowser.MediaEncoding/Subtitles/SsaParser.cs @@ -147,7 +147,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles public static string GetFormattedText(string text) { - text = text.Replace("\\N", Environment.NewLine).Replace("\\n", Environment.NewLine); + text = text.Replace("\\n", Environment.NewLine).Replace("\\n", Environment.NewLine); bool italic = false; for (int i = 0; i < 10; i++) // just look ten times... |
