diff options
author | Melanie | 2011-06-13 12:38:17 +0100 |
---|---|---|
committer | Melanie | 2011-06-13 12:38:17 +0100 |
commit | 9b1d3f0c38a79b96ab3bac72c04cfc397b0a499f (patch) | |
tree | 737d2847e8ea312e18ab96df2e2f6728e068381c /OpenSim/Services/LLLoginService | |
parent | Merge branch 'master' into careminster-presence-refactor (diff) | |
parent | match water color for warp3d map tiler and adjust lighting (diff) | |
download | opensim-SC-9b1d3f0c38a79b96ab3bac72c04cfc397b0a499f.zip opensim-SC-9b1d3f0c38a79b96ab3bac72c04cfc397b0a499f.tar.gz opensim-SC-9b1d3f0c38a79b96ab3bac72c04cfc397b0a499f.tar.bz2 opensim-SC-9b1d3f0c38a79b96ab3bac72c04cfc397b0a499f.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Services/LLLoginService')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 6683caf..e7dd15e 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -112,6 +112,14 @@ namespace OpenSim.Services.LLLoginService | |||
112 | m_AllowedClients = m_LoginServerConfig.GetString("AllowedClients", string.Empty); | 112 | m_AllowedClients = m_LoginServerConfig.GetString("AllowedClients", string.Empty); |
113 | m_DeniedClients = m_LoginServerConfig.GetString("DeniedClients", string.Empty); | 113 | m_DeniedClients = m_LoginServerConfig.GetString("DeniedClients", string.Empty); |
114 | 114 | ||
115 | // Clean up some of these vars | ||
116 | if (m_MapTileURL != String.Empty) | ||
117 | { | ||
118 | m_MapTileURL = m_MapTileURL.Trim(); | ||
119 | if (!m_MapTileURL.EndsWith("/")) | ||
120 | m_MapTileURL = m_MapTileURL + "/"; | ||
121 | } | ||
122 | |||
115 | // These are required; the others aren't | 123 | // These are required; the others aren't |
116 | if (accountService == string.Empty || authService == string.Empty) | 124 | if (accountService == string.Empty || authService == string.Empty) |
117 | throw new Exception("LoginService is missing service specifications"); | 125 | throw new Exception("LoginService is missing service specifications"); |