Skip to content
Snippets Groups Projects
Commit f43854bc authored by brinn's avatar brinn
Browse files

Fix sanity check on client-side incoming messages.

SVN: 24020
parent 4dc3b58d
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ public class ClientMessenger implements IClientMessenger ...@@ -63,7 +63,7 @@ public class ClientMessenger implements IClientMessenger
{ {
public void send(ServiceMessage message) public void send(ServiceMessage message)
{ {
if (serviceConversationId.equals(message.getConversationId())) if (serviceConversationId.equals(message.getConversationId()) == false)
{ {
throw new IllegalArgumentException( throw new IllegalArgumentException(
"Attempt to put in a message for conversation " "Attempt to put in a message for conversation "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment