diff options
author | louiz’ <louiz@louiz.org> | 2018-05-23 01:17:36 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-05-23 01:17:36 +0200 |
commit | 68d86a9daa0a3b407ec1c98715e927e5b7e79eb9 (patch) | |
tree | 4545ffad8346200979753e1266e6ef0827ceca32 /src/xmpp | |
parent | ad1c63b129a928894e7255dc1eb5349d994fa1d1 (diff) | |
parent | d3eda68761d6b5f4394c41248ae95915d6e90ae2 (diff) | |
download | biboumi-68d86a9daa0a3b407ec1c98715e927e5b7e79eb9.tar.gz biboumi-68d86a9daa0a3b407ec1c98715e927e5b7e79eb9.tar.bz2 biboumi-68d86a9daa0a3b407ec1c98715e927e5b7e79eb9.tar.xz biboumi-68d86a9daa0a3b407ec1c98715e927e5b7e79eb9.zip |
Merge branch 'v8'
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/biboumi_adhoc_commands.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xmpp/biboumi_adhoc_commands.cpp b/src/xmpp/biboumi_adhoc_commands.cpp index 5a0aba8..1b5fdcb 100644 --- a/src/xmpp/biboumi_adhoc_commands.cpp +++ b/src/xmpp/biboumi_adhoc_commands.cpp @@ -232,6 +232,7 @@ void ConfigureIrcServerStep1(XmppComponent&, AdhocSession& session, XmlNode& com XmlSubNode instructions(x, "instructions"); instructions.set_inner("Edit the form, to configure the settings of the IRC server " + server_domain); + if (Config::get("fixed_irc_server", "").empty()) { XmlSubNode field(x, "field"); field["var"] = "address"; @@ -411,7 +412,7 @@ void ConfigureIrcServerStep2(XmppComponent&, AdhocSession& session, XmlNode& com const XmlNode* value = field->get_child("value", "jabber:x:data"); const std::vector<const XmlNode*> values = field->get_children("value", "jabber:x:data"); - if (field->get_tag("var") == "address" && value) + if (field->get_tag("var") == "address" && value && Config::get("fixed_irc_server", "").empty()) options.col<Database::Address>() = value->get_inner(); if (field->get_tag("var") == "ports") |