We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32be387 commit 82d4270Copy full SHA for 82d4270
src/main/java/org/fogbowcloud/rendezvous/xmpp/RendezvousXMPPComponent.java
@@ -10,6 +10,7 @@
10
import org.fogbowcloud.rendezvous.xmpp.handler.WhoIsAliveHandler;
11
import org.fogbowcloud.rendezvous.xmpp.handler.WhoIsAliveSyncHandler;
12
import org.jamppa.component.XMPPComponent;
13
+import org.xmpp.packet.IQ;
14
15
public class RendezvousXMPPComponent extends XMPPComponent {
16
@@ -33,6 +34,11 @@ private void addGetHandlers() {
33
34
addGetHandler(new WhoIsAliveHandler(rendezvous));
35
addGetHandler(new WhoIsAliveSyncHandler(rendezvous));
36
}
37
+
38
+ @Override
39
+ protected void handleIQError(IQ iq) {
40
+ super.handleIQResult(iq);
41
+ }
42
43
@Override
44
public void process() {
0 commit comments