diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-26 16:31:47 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-26 16:31:47 -0500 |
| commit | ec131ba0dc25b29ca522cf4555bfad29ad501406 (patch) | |
| tree | d7b0d0a179c64762354d032df58b8f46546a1ac7 /MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs | |
| parent | 96d3c35ba0e181c41728fd7bbdb3d56903aca90d (diff) | |
added first play to classes
Diffstat (limited to 'MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs b/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs index 98e81981d..24ac48e83 100644 --- a/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs +++ b/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs @@ -55,7 +55,9 @@ namespace MediaBrowser.Common.Implementations.IO if (string.Equals(Path.GetExtension(filename), ".mblink", StringComparison.OrdinalIgnoreCase)) { - return File.ReadAllText(filename); + var path = File.ReadAllText(filename); + + return NormalizePath(path); } return null; |
