Don't wait for reply on XEP-0199 pongs.

Nobody replies to pongs...
This commit is contained in:
Marvin W 2021-03-21 16:01:50 +01:00
parent cde1e38f5d
commit 9fed5ea865
No known key found for this signature in database
GPG key ID: 072E9235DB996F2A

View file

@ -23,7 +23,7 @@ namespace Xmpp.Xep.Ping {
}
public async void on_iq_get(XmppStream stream, Iq.Stanza iq) {
yield stream.get_module(Iq.Module.IDENTITY).send_iq_async(stream, new Iq.Stanza.result(iq));
stream.get_module(Iq.Module.IDENTITY).send_iq(stream, new Iq.Stanza.result(iq));
}
public override string get_ns() { return NS_URI; }