summaryrefslogtreecommitdiff
path: root/src/irc/irc_client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/irc_client.cpp')
-rw-r--r--src/irc/irc_client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp
index 0f29a2b..ed98653 100644
--- a/src/irc/irc_client.cpp
+++ b/src/irc/irc_client.cpp
@@ -224,7 +224,7 @@ void IrcClient::on_channel_message(const IrcMessage& message)
const IrcUser user(message.prefix);
const std::string nick = user.nick;
Iid iid;
- iid.chan = message.arguments[0];
+ iid.chan = utils::tolower(message.arguments[0]);
iid.server = this->hostname;
const std::string body = message.arguments[1];
bool muc = true;
@@ -388,7 +388,7 @@ void IrcClient::on_channel_mode(const IrcMessage& message)
// For now, just transmit the modes so the user can know what happens
// TODO, actually interprete the mode.
Iid iid;
- iid.chan = message.arguments[0];
+ iid.chan = utils::tolower(message.arguments[0]);
iid.server = this->hostname;
IrcUser user(message.prefix);
std::string mode_arguments;