Skip to content

Commit

Permalink
Add missing ClipboardService.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbound committed May 3, 2020
1 parent 95055e0 commit c0df182
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ScreenCast.Core/Communication/CasterSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ public CasterSocket(
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; }
Expand Down

0 comments on commit c0df182

Please sign in to comment.