From 97a1d6429a735eb279496df010d04e3f42aa4e22 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Tue, 24 Jul 2018 18:29:43 +0100 Subject: Make more config stuff case insensitive. --- src/modules/m_blockamsg.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/modules/m_blockamsg.cpp') diff --git a/src/modules/m_blockamsg.cpp b/src/modules/m_blockamsg.cpp index ed0e486e9..097041896 100644 --- a/src/modules/m_blockamsg.cpp +++ b/src/modules/m_blockamsg.cpp @@ -69,13 +69,13 @@ class ModuleBlockAmsg : public Module ForgetDelay = tag->getDuration("delay", 3); std::string act = tag->getString("action"); - if (act == "notice") + if (stdalgo::string::equalsci(act, "notice")) action = IBLOCK_NOTICE; - else if (act == "noticeopers") + else if (stdalgo::string::equalsci(act, "noticeopers")) action = IBLOCK_NOTICEOPERS; - else if (act == "silent") + else if (stdalgo::string::equalsci(act, "silent")) action = IBLOCK_SILENT; - else if (act == "kill") + else if (stdalgo::string::equalsci(act, "kill")) action = IBLOCK_KILL; else action = IBLOCK_KILLOPERS; -- cgit v1.3.1-10-gc9f91