aboutsummaryrefslogtreecommitdiffstats
path: root/src/irc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc.lua')
-rw-r--r--src/irc.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc.lua b/src/irc.lua
index 3d7d68f..761039b 100644
--- a/src/irc.lua
+++ b/src/irc.lua
@@ -225,7 +225,7 @@ end
-- on_privmsg {{{
function handlers.on_privmsg(from, to, msg)
- local msgs = ctcp._ctcp_split(msg, true)
+ local msgs = ctcp._ctcp_split(msg)
for _, v in base.ipairs(msgs) do
if base.type(v) == "string" then
-- normal message {{{
@@ -258,7 +258,7 @@ end
-- on_notice {{{
function handlers.on_notice(from, to, msg)
- local msgs = ctcp._ctcp_split(msg, true)
+ local msgs = ctcp._ctcp_split(msg)
for _, v in base.ipairs(msgs) do
if base.type(v) == "string" then
-- normal message {{{