OpenID: server connector had a copy-and-paste error that made identity queries fail.

iar_mods
Diva Canto 2012-02-02 08:39:23 -08:00
parent 567f4c51f8
commit dbf6381e34
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ namespace OpenSim.Server.Handlers.Authentication
Object[] args = new Object[] { config };
m_AuthenticationService = ServerUtils.LoadPlugin<IAuthenticationService>(authService, args);
m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(authService, args);
m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(userService, args);
// Handler for OpenID user identity pages
server.AddStreamHandler(new OpenIdStreamHandler("GET", "/users/", m_UserAccountService, m_AuthenticationService));