diff --git a/Desktop.Core/Services/WebRtcSession.cs b/Desktop.Core/Services/WebRtcSession.cs index 84cd9bf4..bee69405 100644 --- a/Desktop.Core/Services/WebRtcSession.cs +++ b/Desktop.Core/Services/WebRtcSession.cs @@ -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; diff --git a/Desktop.Linux/Services/ChatUiServiceLinux.cs b/Desktop.Linux/Services/ChatUiServiceLinux.cs index ec635f20..5f4be5d3 100644 --- a/Desktop.Linux/Services/ChatUiServiceLinux.cs +++ b/Desktop.Linux/Services/ChatUiServiceLinux.cs @@ -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;