summaryrefslogtreecommitdiff
path: root/src/irc
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc')
-rw-r--r--src/irc/iid.hpp2
-rw-r--r--src/irc/irc_client.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/iid.hpp b/src/irc/iid.hpp
index c547dea..d30cbaa 100644
--- a/src/irc/iid.hpp
+++ b/src/irc/iid.hpp
@@ -42,7 +42,7 @@
class Iid
{
public:
- explicit Iid(const std::string& iid);
+ Iid(const std::string& iid);
explicit Iid(const Iid&);
explicit Iid();
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp
index f9ebfa0..90f0644 100644
--- a/src/irc/irc_client.cpp
+++ b/src/irc/irc_client.cpp
@@ -156,7 +156,7 @@ void IrcClient::parse_in_buffer(const size_t)
else
log_info("No handler for command " << message.command);
// Try to find a waiting_iq, which response will be triggered by this IrcMessage
- this->bridge->trigger_response_iq(this->hostname, message);
+ this->bridge->trigger_on_irc_message(this->hostname, message);
}
}