diff options
author | Georg Lukas <georg@op-co.de> | 2018-03-26 16:55:42 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-03-26 22:27:45 +0200 |
commit | 49bb383080fab1a88c343d84825dd40892ee085d (patch) | |
tree | d32f624796a6acd479e431ed9f1cd8c725b59d32 | |
parent | 2fe06ffab7eb77892ae1ee2859e07c2e19b62182 (diff) | |
download | biboumi-49bb383080fab1a88c343d84825dd40892ee085d.tar.gz biboumi-49bb383080fab1a88c343d84825dd40892ee085d.tar.bz2 biboumi-49bb383080fab1a88c343d84825dd40892ee085d.tar.xz biboumi-49bb383080fab1a88c343d84825dd40892ee085d.zip |
Channel disco-info: use shorter string
-rw-r--r-- | src/xmpp/biboumi_component.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/biboumi_component.cpp b/src/xmpp/biboumi_component.cpp index 26e8035..12dd520 100644 --- a/src/xmpp/biboumi_component.cpp +++ b/src/xmpp/biboumi_component.cpp @@ -981,7 +981,7 @@ void BiboumiComponent::send_irc_channel_disco_info(const std::string& id, const XmlSubNode identity(query, "identity"); identity["category"] = "conference"; identity["type"] = "irc"; - identity["name"] = "IRC channel " + iid.get_local() + " from server " + iid.get_server() + " over biboumi"; + identity["name"] = ""s + iid.get_local() + " on " + iid.get_server(); for (const char *ns: {DISCO_INFO_NS, MUC_NS, ADHOC_NS, PING_NS, MAM_NS, VERSION_NS, STABLE_MUC_ID_NS}) { XmlSubNode feature(query, "feature"); |