Browse Source

Fix build

Bond_009 5 years ago
parent
commit
c751ba9f70
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Emby.Server.Implementations/HttpServer/HttpResultFactory.cs

+ 4 - 4
Emby.Server.Implementations/HttpServer/HttpResultFactory.cs

@@ -440,7 +440,7 @@ namespace Emby.Server.Implementations.HttpServer
 
 
         public Task<object> GetStaticFileResult(IRequest requestContext,
         public Task<object> GetStaticFileResult(IRequest requestContext,
             string path,
             string path,
-            FileShareMode fileShare = FileShareMode.Read)
+            FileShare fileShare = FileShare.Read)
         {
         {
             if (string.IsNullOrEmpty(path))
             if (string.IsNullOrEmpty(path))
             {
             {
@@ -464,7 +464,7 @@ namespace Emby.Server.Implementations.HttpServer
                 throw new ArgumentException("Path can't be empty.", nameof(options));
                 throw new ArgumentException("Path can't be empty.", nameof(options));
             }
             }
 
 
-            if (fileShare != FileShareMode.Read && fileShare != FileShareMode.ReadWrite)
+            if (fileShare != FileShare.Read && fileShare != FileShare.ReadWrite)
             {
             {
                 throw new ArgumentException("FileShare must be either Read or ReadWrite");
                 throw new ArgumentException("FileShare must be either Read or ReadWrite");
             }
             }
@@ -492,9 +492,9 @@ namespace Emby.Server.Implementations.HttpServer
         /// <param name="path">The path.</param>
         /// <param name="path">The path.</param>
         /// <param name="fileShare">The file share.</param>
         /// <param name="fileShare">The file share.</param>
         /// <returns>Stream.</returns>
         /// <returns>Stream.</returns>
-        private Stream GetFileStream(string path, FileShareMode fileShare)
+        private Stream GetFileStream(string path, FileShare fileShare)
         {
         {
-            return _fileSystem.GetFileStream(path, FileOpenMode.Open, FileAccessMode.Read, fileShare);
+            return new FileStream(path, FileMode.Open, FileAccess.Read, fileShare);
         }
         }
 
 
         public Task<object> GetStaticResult(IRequest requestContext,
         public Task<object> GetStaticResult(IRequest requestContext,