Merge pull request #315 from d3agle/master

Remote Desktop form bug fix
This commit is contained in:
MaxXor 2015-07-31 15:32:01 +02:00
commit cc1a729b81
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ public static void HandleGetDesktopResponse(Client client, GetDesktopResponse pa
packet.Image = null;
if (client.Value.FrmRdp != null && client.Value.FrmRdp.IsStarted)
if (client.Value != null && client.Value.FrmRdp != null && client.Value.FrmRdp.IsStarted)
new GetDesktop(packet.Quality, packet.Monitor).Execute(client);
}