Commit 1238c972 authored by Damian Minkov's avatar Damian Minkov

Doesn't filter iq results that needs to be delivered to local muc users.

parent 565460cb
...@@ -368,8 +368,8 @@ public class LocalMUCUser implements MUCUser { ...@@ -368,8 +368,8 @@ public class LocalMUCUser implements MUCUser {
} }
public void process(IQ packet) { public void process(IQ packet) {
// Ignore IQs of type ERROR or RESULT sent to a room // Ignore IQs of type ERROR sent to a room
if (IQ.Type.error == packet.getType() || IQ.Type.result == packet.getType()) { if (IQ.Type.error == packet.getType()) {
return; return;
} }
lastPacketTime = System.currentTimeMillis(); 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