aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/SocketSharp/WebSocketSharpResponse.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-03-13 15:01:49 -0400
committerGitHub <noreply@github.com>2017-03-13 15:01:49 -0400
commitafb4a08bfe94da3b29d6f962665f93824e94f203 (patch)
treecf21a536f930f54e3847bf243afb130276c3097c /Emby.Server.Implementations/HttpServer/SocketSharp/WebSocketSharpResponse.cs
parent7ae1de52b45267e399b6cbbaa423665bb006bf79 (diff)
parenta9b61af1549770b5a3c613c6b552f8bb698e9870 (diff)
Merge pull request #2525 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/SocketSharp/WebSocketSharpResponse.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/SocketSharp/WebSocketSharpResponse.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/HttpServer/SocketSharp/WebSocketSharpResponse.cs b/Emby.Server.Implementations/HttpServer/SocketSharp/WebSocketSharpResponse.cs
index a497ee715..fd30b227f 100644
--- a/Emby.Server.Implementations/HttpServer/SocketSharp/WebSocketSharpResponse.cs
+++ b/Emby.Server.Implementations/HttpServer/SocketSharp/WebSocketSharpResponse.cs
@@ -193,9 +193,9 @@ namespace Emby.Server.Implementations.HttpServer.SocketSharp
{
}
- public Task TransmitFile(string path, long offset, long count, CancellationToken cancellationToken)
+ public Task TransmitFile(string path, long offset, long count, FileShareMode fileShareMode, CancellationToken cancellationToken)
{
- return _response.TransmitFile(path, offset, count, cancellationToken);
+ return _response.TransmitFile(path, offset, count, fileShareMode, cancellationToken);
}
}
}