~singpolyma/biboumi

7d3c1ed92733a05ab4282993ffe58fb88a1b50e9 — louiz’ 5 years ago 1c4620d
Do not use (or present to the user) the Address field in fixed mode

fix #3359
2 files changed, 4 insertions(+), 2 deletions(-)

M src/irc/irc_client.cpp
M src/xmpp/biboumi_adhoc_commands.cpp
M src/irc/irc_client.cpp => src/irc/irc_client.cpp +2 -1
@@ 195,7 195,8 @@ void IrcClient::start()
# ifdef BOTAN_FOUND
  this->credential_manager.set_trusted_fingerprint(options.col<Database::TrustedFingerprint>());
# endif
  if (!options.col<Database::Address>().empty())
  if (Config::get("fixed_irc_server", "").empty() &&
      !options.col<Database::Address>().empty())
    address = options.col<Database::Address>();
#endif
  this->bridge.send_xmpp_message(this->hostname, "", "Connecting to " +

M src/xmpp/biboumi_adhoc_commands.cpp => src/xmpp/biboumi_adhoc_commands.cpp +2 -1
@@ 230,6 230,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";


@@ 409,7 410,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")