added first play to classes

This commit is contained in:
Luke Pulverenti
2014-02-26 16:31:47 -05:00
parent 96d3c35ba0
commit ec131ba0dc
22 changed files with 1797 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
using MediaBrowser.Common.Configuration;
using System.Collections.Specialized;
using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.IO;
using MediaBrowser.Common.Net;
using MediaBrowser.Model.Logging;
@@ -367,7 +368,7 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
ContentType = httpResponse.ContentType,
Headers = httpResponse.Headers,
Headers = new NameValueCollection(httpResponse.Headers),
ContentLength = contentLength
};

View File

@@ -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;