diff options
author | Kim Alvefur <zash@zash.se> | 2018-09-26 15:07:25 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-09-26 15:07:25 +0200 |
commit | 6f80e5bfa629d1fe99e0f62ca12f4c6b789f7845 (patch) | |
tree | 8e8dd550b63e8cf6619c18f93d2e3843daffb20d /net | |
parent | 074af5e0b12bad4c2bae660f32003b0b0ed129bf (diff) | |
download | prosody-6f80e5bfa629d1fe99e0f62ca12f4c6b789f7845.tar.gz prosody-6f80e5bfa629d1fe99e0f62ca12f4c6b789f7845.zip |
net.connect: Remove manual onattach callback invocation
Diffstat (limited to 'net')
-rw-r--r-- | net/connect.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/connect.lua b/net/connect.lua index 02ab4cc0..8a298c5d 100644 --- a/net/connect.lua +++ b/net/connect.lua @@ -56,9 +56,6 @@ function pending_connection_listeners.onconnect(conn) end pending_connections_map[conn] = nil; p:log("debug", "Successfully connected"); - if p.listeners.onattach then - p.listeners.onattach(conn, p.data); - end conn:setlistener(p.listeners); return p.listeners.onconnect(conn); end |