verse: Really pass the connection to ondisconnect, not some unknown global

Sun, 10 Feb 2013 04:20:44 +0100

author
Kim Alvefur <zash@zash.se>
date
Sun, 10 Feb 2013 04:20:44 +0100
changeset 327
963d156a4b36
parent 326
f657ed8f464e
child 328
55e3fd7b9731

verse: Really pass the connection to ondisconnect, not some unknown global

init.lua file | annotate | diff | comparison | revisions
--- a/init.lua	Sun Feb 10 03:41:45 2013 +0100
+++ b/init.lua	Sun Feb 10 04:20:44 2013 +0100
@@ -150,7 +150,7 @@
 	end
 	local on_disconnect = self.conn.disconnect();
 	self.conn:close();
-	on_disconnect(conn, reason);
+	on_disconnect(self.conn, reason);
 end
 
 -- Logging functions

mercurial