aboutsummaryrefslogtreecommitdiffstats
path: root/src/irc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc.lua')
-rw-r--r--src/irc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc.lua b/src/irc.lua
index 2b2bca7..ff90c36 100644
--- a/src/irc.lua
+++ b/src/irc.lua
@@ -502,7 +502,7 @@ function ctcp_handlers.on_dcc(from, to, message)
local type, argument, address, port, size = base.unpack(misc.split(message, " ", nil, '"', '"'))
if type == "SEND" then
if misc.try_call(on_dcc, from, to, argument, address, port, size) then
- dcc.accept(argument, address, port, size)
+ dcc.accept(argument, address, port)
end
elseif type == "CHAT" then
-- TODO: implement this? do people ever use this?