Skip to content

Commit b5e7127

Browse files
committed
[FIX] Compilation fix.
1 parent 9919a5a commit b5e7127

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Source/websocket/JSONRPCLink.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -930,6 +930,7 @@ namespace JSONRPC {
930930
FromMessage((INTERFACE*) &inbound, *response);
931931
}
932932
}
933+
933934
return (result);
934935
}
935936
template <typename PARAMETERS>
@@ -940,9 +941,6 @@ namespace JSONRPC {
940941
if (result == Core::ERROR_NONE) {
941942
if (response->Error.IsSet() == true) {
942943
result = response->Error.Code.Value();
943-
} else if ((response->Result.IsSet() == true)
944-
&& (response->Result.Value().empty() == false)) {
945-
FromMessage((INTERFACE*) &inbound, *response);
946944
}
947945
}
948946
return (result);

0 commit comments

Comments
 (0)