소스 검색

Fixed RPCClient.Ping Error

Frank van den Bos 2 년 전
부모
커밋
8c77ac6764
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      InABox.Client.RPC/RPCClient.cs

+ 2 - 0
InABox.Client.RPC/RPCClient.cs

@@ -222,6 +222,8 @@ namespace InABox.Rpc
         {
             try
             {
+                if (!_transport.IsConnected())
+                    _transport.Connect();
                 _transport.Send<RpcPingCommand, RpcPingParameters, RpcPingResult>(new RpcPingParameters());
                 return true;
             }