diff --git a/Source/websocket/JSONRPCLink.h b/Source/websocket/JSONRPCLink.h index 940e44111..78aec3c31 100644 --- a/Source/websocket/JSONRPCLink.h +++ b/Source/websocket/JSONRPCLink.h @@ -930,6 +930,7 @@ namespace JSONRPC { FromMessage((INTERFACE*) &inbound, *response); } } + return (result); } template @@ -940,9 +941,6 @@ namespace JSONRPC { if (result == Core::ERROR_NONE) { if (response->Error.IsSet() == true) { result = response->Error.Code.Value(); - } else if ((response->Result.IsSet() == true) - && (response->Result.Value().empty() == false)) { - FromMessage((INTERFACE*) &inbound, *response); } } return (result);