aboutsummaryrefslogtreecommitdiffstats
path: root/src/irc/ctcp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/ctcp.lua')
-rw-r--r--src/irc/ctcp.lua12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/irc/ctcp.lua b/src/irc/ctcp.lua
index 97b880d..1866122 100644
--- a/src/irc/ctcp.lua
+++ b/src/irc/ctcp.lua
@@ -73,12 +73,12 @@ end
-- _ctcp_split {{{
-- TODO: again with this string/table thing... it's ugly!
--
--- Splits a low level dequoted string into normal text and CTCP messages.
+-- Splits a low level dequoted string into normal text and unquoted CTCP
+-- messages.
-- @param str Low level dequoted string
--- @param dequote If true, the CTCP messages will also be CTCP dequoted
-- @return Array, where string values correspond to plain text, and table
-- values have t[1] as the CTCP message
-function _ctcp_split(str, dequote)
+function _ctcp_split(str)
local ret = {}
local iter = 1
while true do
@@ -97,11 +97,7 @@ function _ctcp_split(str, dequote)
end
if not s then break end
if ctcp_string ~= "" then
- if dequote then
- table.insert(ret, {_ctcp_dequote(ctcp_string)})
- else
- table.insert(ret, {ctcp_string})
- end
+ table.insert(ret, {_ctcp_dequote(ctcp_string)})
end
iter = e + 1