diff --git a/ScreenCast.Core/Communication/CasterSocket.cs b/ScreenCast.Core/Communication/CasterSocket.cs index 9ac50bd9..bc758994 100644 --- a/ScreenCast.Core/Communication/CasterSocket.cs +++ b/ScreenCast.Core/Communication/CasterSocket.cs @@ -20,12 +20,14 @@ namespace Remotely.ScreenCast.Core.Communication IKeyboardMouseInput keyboardMouseInput, IScreenCaster screenCastService, IAudioCapturer audioCapturer, - IFileTransferService fileDownloadService) + IFileTransferService fileDownloadService, + IClipboardService clipboardService) { KeyboardMouseInput = keyboardMouseInput; AudioCapturer = audioCapturer; ScreenCaster = screenCastService; FileDownloadService = fileDownloadService; + ClipboardService = clipboardService; } public HubConnection Connection { get; private set; }