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

View file

@ -67,8 +67,8 @@ namespace Xmpp.Iq {
} }
} }
} else { } 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()); 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, unaviable_error); send_iq(stream, unavailable_error);
} }
} }
} }