diff options
author | Marvin W <git@larma.de> | 2021-03-21 16:01:50 +0100 |
---|---|---|
committer | Marvin W <git@larma.de> | 2021-03-21 16:01:50 +0100 |
commit | 9fed5ea8650d6e7735fca4b3fe2cf4fc29f81c33 (patch) | |
tree | c27de5ec5aa8db109b33c496fe77820406463f73 /xmpp-vala | |
parent | cde1e38f5d56269addff93b36c57299cbf546279 (diff) | |
download | dino-9fed5ea8650d6e7735fca4b3fe2cf4fc29f81c33.tar.gz dino-9fed5ea8650d6e7735fca4b3fe2cf4fc29f81c33.zip |
Don't wait for reply on XEP-0199 pongs.
Nobody replies to pongs...
Diffstat (limited to 'xmpp-vala')
-rw-r--r-- | xmpp-vala/src/module/xep/0199_ping.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp-vala/src/module/xep/0199_ping.vala b/xmpp-vala/src/module/xep/0199_ping.vala index f3e68660..0b31011f 100644 --- a/xmpp-vala/src/module/xep/0199_ping.vala +++ b/xmpp-vala/src/module/xep/0199_ping.vala @@ -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; } |