sessionmanager: It really is username@host, not host@username :)
authorWaqas Hussain <waqas20@gmail.com>
Thu, 04 Jun 2009 05:54:32 +0500
changeset 1301 d10d84f755b5
parent 1295 ead6d78d2217
child 1302 4561c6d95339
sessionmanager: It really is username@host, not host@username :)
core/sessionmanager.lua
--- a/core/sessionmanager.lua	Thu Jun 04 05:37:43 2009 +0500
+++ b/core/sessionmanager.lua	Thu Jun 04 05:54:32 2009 +0500
@@ -72,7 +72,7 @@
 		if not next(hosts[session.host].sessions[session.username].sessions) then
 			log("debug", "All resources of %s are now offline", session.username);
 			hosts[session.host].sessions[session.username] = nil;
-			bare_sessions[session.host..'@'..session.username] = nil;
+			bare_sessions[session.username..'@'..session.host] = nil;
 		end
 	end