Commit f22c928f authored by Dave Cridland's avatar Dave Cridland

Fix logic on return

parent 0a4cc267
......@@ -427,7 +427,9 @@ public class MultiUserChatServiceImpl implements Component, MultiUserChatService
IQ reply = IQ.createResultIQ(iq);
reply.setType(IQ.Type.error);
reply.setError(PacketError.Condition.service_unavailable);
router.route(reply);
}
return true;
}
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment