This commit is contained in:
Jared 2021-03-05 20:25:38 -08:00 committed by Jared Goodwin
parent 884d836421
commit 5a2f12cb03
2 changed files with 3 additions and 3 deletions

View File

@ -91,10 +91,10 @@ namespace Remotely.Desktop.Core.Services
await PeerSession.InitializeAsync(config);
PeerSession.LocalSdpReadytoSend += PeerSession_LocalSdpReadytoSend; ;
PeerSession.LocalSdpReadytoSend += PeerSession_LocalSdpReadytoSend;
PeerSession.Connected += PeerConnection_Connected;
PeerSession.IceStateChanged += PeerConnection_IceStateChanged;
PeerSession.IceCandidateReadytoSend += PeerSession_IceCandidateReadytoSend; ;
PeerSession.IceCandidateReadytoSend += PeerSession_IceCandidateReadytoSend;
CaptureChannel = await PeerSession.AddDataChannelAsync("ScreenCapture", true, true);
CaptureChannel.BufferingChanged += DataChannel_BufferingChanged;

View File

@ -46,7 +46,7 @@ namespace Remotely.Desktop.Linux.Services
Dispatcher.UIThread.Post(() =>
{
var chatWindow = new ChatWindow();
chatWindow.Closing += ChatWindow_Closing; ;
chatWindow.Closing += ChatWindow_Closing;
ChatViewModel = chatWindow.DataContext as ChatWindowViewModel;
ChatViewModel.PipeStreamWriter = writer;
ChatViewModel.OrganizationName = organizationName;