From ea624db4f6ebf97306df903b3032d2bccc2bd815 Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Sun, 3 May 2020 10:12:17 -0700 Subject: [PATCH] Add missing ClipboardService. --- ScreenCast.Core/Communication/CasterSocket.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; }