HG IM bug fix: grid_instant_message was being placed in the default port instead of the specified one.

This commit is contained in:
Diva Canto
2011-06-02 10:14:26 -07:00
parent 65c71050cc
commit 6312eea459
2 changed files with 2 additions and 3 deletions

View File

@@ -72,8 +72,7 @@ namespace OpenSim.Server.Handlers.Hypergrid
if (m_IMService == null)
throw new Exception("InstantMessage server connector cannot proceed because of missing service");
m_log.DebugFormat("[XXX] IM Server Connector is ON");
MainServer.Instance.AddXmlRPCHandler("grid_instant_message", ProcessInstantMessage, false);
server.AddXmlRPCHandler("grid_instant_message", ProcessInstantMessage, false);
}