Commit e24847da authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

[JM-1221] Additional fix.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9884 b35dd754-fafc-0310-a699-88a17e54d16e
parent d9ab7138
...@@ -16,6 +16,7 @@ import org.jivesoftware.openfire.IQHandlerInfo; ...@@ -16,6 +16,7 @@ import org.jivesoftware.openfire.IQHandlerInfo;
import org.jivesoftware.openfire.RoutingTable; import org.jivesoftware.openfire.RoutingTable;
import org.jivesoftware.openfire.SessionManager; import org.jivesoftware.openfire.SessionManager;
import org.jivesoftware.openfire.XMPPServer; import org.jivesoftware.openfire.XMPPServer;
import org.jivesoftware.openfire.event.SessionEventDispatcher;
import org.jivesoftware.openfire.auth.AuthToken; import org.jivesoftware.openfire.auth.AuthToken;
import org.jivesoftware.openfire.auth.UnauthorizedException; import org.jivesoftware.openfire.auth.UnauthorizedException;
import org.jivesoftware.openfire.session.ClientSession; import org.jivesoftware.openfire.session.ClientSession;
...@@ -135,7 +136,7 @@ public class IQBindHandler extends IQHandler { ...@@ -135,7 +136,7 @@ public class IQBindHandler extends IQHandler {
// Send the response directly since a route does not exist at this point. // Send the response directly since a route does not exist at this point.
session.process(reply); session.process(reply);
// After the client has been informed, inform all listeners as well. // After the client has been informed, inform all listeners as well.
SessionEventDispatcher.dispatchEvent(session, EventType.resource_bound); SessionEventDispatcher.dispatchEvent(session, SessionEventDispatcher.EventType.resource_bound);
return null; return null;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment