From ec131ba0dc25b29ca522cf4555bfad29ad501406 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 26 Feb 2014 16:31:47 -0500 Subject: added first play to classes --- MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs') 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; -- cgit v1.2.3