From 80c5a0e150f8d7b165e1681252ac2a09dd3649c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Fri, 15 Jan 2021 12:34:30 +0100 Subject: Use recipient-unavailable when we are not connected to the IRC server Instead of remote-server-not-found See #3427 --- src/xmpp/biboumi_component.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xmpp/biboumi_component.cpp b/src/xmpp/biboumi_component.cpp index 6e579cc..3cfa9d0 100644 --- a/src/xmpp/biboumi_component.cpp +++ b/src/xmpp/biboumi_component.cpp @@ -264,7 +264,7 @@ void BiboumiComponent::handle_presence(const Stanza& stanza) { if (type != "unavailable") this->send_stanza_error("presence", from_str, to_str, id, - "cancel", "remote-server-not-found", + "cancel", "recipient-unavailable", "Not connected to IRC server " + ex.hostname, true); } @@ -396,7 +396,7 @@ void BiboumiComponent::handle_message(const Stanza& stanza) } catch (const IRCNotConnected& ex) { this->send_stanza_error("message", from_str, to_str, id, - "cancel", "remote-server-not-found", + "cancel", "recipient-unavailable", "Not connected to IRC server " + ex.hostname, true); } @@ -717,7 +717,7 @@ void BiboumiComponent::handle_iq(const Stanza& stanza) catch (const IRCNotConnected& ex) { this->send_stanza_error("iq", from, to_str, id, - "cancel", "remote-server-not-found", + "cancel", "recipient-unavailable", "Not connected to IRC server " + ex.hostname, true); stanza_error.disable(); -- cgit v1.2.3