diff options
author | Diva Canto | 2010-01-01 21:12:46 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-01 21:12:46 -0800 |
commit | 8a9677a5319793ff630d0761e204ae8961f375aa (patch) | |
tree | 0b92d2c9258383df59866945ebad7ba8479563d0 /OpenSim/Server/Handlers/Login | |
parent | Forgotten modules in prior commit. (diff) | |
download | opensim-SC_OLD-8a9677a5319793ff630d0761e204ae8961f375aa.zip opensim-SC_OLD-8a9677a5319793ff630d0761e204ae8961f375aa.tar.gz opensim-SC_OLD-8a9677a5319793ff630d0761e204ae8961f375aa.tar.bz2 opensim-SC_OLD-8a9677a5319793ff630d0761e204ae8961f375aa.tar.xz |
The Library Service is now working. UserProfileCacheService.LibraryRoot is obsolete. Didn't delete it yet to avoid merge conflicts later -- want to stay out of core as much as possible.
Diffstat (limited to 'OpenSim/Server/Handlers/Login')
-rw-r--r-- | OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs b/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs index d5e073c..e24055b 100644 --- a/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs +++ b/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs | |||
@@ -51,8 +51,9 @@ namespace OpenSim.Server.Handlers.Login | |||
51 | string loginService = ReadLocalServiceFromConfig(config); | 51 | string loginService = ReadLocalServiceFromConfig(config); |
52 | 52 | ||
53 | ISimulationService simService = scene.RequestModuleInterface<ISimulationService>(); | 53 | ISimulationService simService = scene.RequestModuleInterface<ISimulationService>(); |
54 | ILibraryService libService = scene.RequestModuleInterface<ILibraryService>(); | ||
54 | 55 | ||
55 | Object[] args = new Object[] { config, simService }; | 56 | Object[] args = new Object[] { config, simService, libService }; |
56 | m_LoginService = ServerUtils.LoadPlugin<ILoginService>(loginService, args); | 57 | m_LoginService = ServerUtils.LoadPlugin<ILoginService>(loginService, args); |
57 | 58 | ||
58 | InitializeHandlers(server); | 59 | InitializeHandlers(server); |