aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/WebSockets/WebSocketHandler.cs
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2019-03-03 08:29:23 +0100
committerClaus Vium <clausvium@gmail.com>2019-03-03 08:29:23 +0100
commite823c11b46ccf0473aa72cb52cd5a3a9f977e61b (patch)
treec8b053828dece3d44defe2256d33039bd7fd22ed /Emby.Server.Implementations/WebSockets/WebSocketHandler.cs
parent6bdb5debd2492b71d11f9628889b8c29b6321a77 (diff)
Add certificate to https and minor cleanup
Diffstat (limited to 'Emby.Server.Implementations/WebSockets/WebSocketHandler.cs')
-rw-r--r--Emby.Server.Implementations/WebSockets/WebSocketHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/WebSockets/WebSocketHandler.cs b/Emby.Server.Implementations/WebSockets/WebSocketHandler.cs
index 70b9e85aa..eb1877440 100644
--- a/Emby.Server.Implementations/WebSockets/WebSocketHandler.cs
+++ b/Emby.Server.Implementations/WebSockets/WebSocketHandler.cs
@@ -5,6 +5,6 @@ namespace Emby.Server.Implementations.WebSockets
{
public interface IWebSocketHandler
{
- Task ProcessMessage(WebSocketMessage<object> message);
+ Task ProcessMessage(WebSocketMessage<object> message, TaskCompletionSource<bool> taskCompletionSource);
}
}