Commit a82796db authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Ignore IQ packets of type RESULT sent to the MUC service. JM-447

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@3017 b35dd754-fafc-0310-a699-88a17e54d16e
parent 8586d914
......@@ -284,8 +284,8 @@ public class MUCUserImpl implements MUCUser {
}
public void process(IQ packet) {
// Ignore IQs of type ERROR sent to a room
if (IQ.Type.error == packet.getType()) {
// Ignore IQs of type ERROR or RESULT sent to a room
if (IQ.Type.error == packet.getType() || IQ.Type.result == packet.getType()) {
return;
}
lastPacketTime = System.currentTimeMillis();
......
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