Fix a typo in the `<service-unvailable/>` iq answer

This commit is contained in:
hrxi 2019-06-01 17:12:18 +02:00
parent c245f7e34a
commit ce8f343297
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ namespace Xmpp.Iq {
}
}
} else {
Iq.Stanza unaviable_error = new Iq.Stanza.error(iq, new StanzaNode.build("service-unaviable", "urn:ietf:params:xml:ns:xmpp-stanzas").add_self_xmlns());
send_iq(stream, unaviable_error);
Iq.Stanza unavailable_error = new Iq.Stanza.error(iq, new StanzaNode.build("service-unavailable", "urn:ietf:params:xml:ns:xmpp-stanzas").add_self_xmlns());
send_iq(stream, unavailable_error);
}
}
}