aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/LLLoginService/LLLoginService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginService.cs')
-rw-r--r--OpenSim/Services/LLLoginService/LLLoginService.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs
index 8059652..b1aabe6 100644
--- a/OpenSim/Services/LLLoginService/LLLoginService.cs
+++ b/OpenSim/Services/LLLoginService/LLLoginService.cs
@@ -945,6 +945,13 @@ namespace OpenSim.Services.LLLoginService
945 m_log.DebugFormat("[LLLOGIN SERVICE]: found new key {0} {1}", keyName, aCircuit.ServiceURLs[keyName]); 945 m_log.DebugFormat("[LLLOGIN SERVICE]: found new key {0} {1}", keyName, aCircuit.ServiceURLs[keyName]);
946 } 946 }
947 947
948 if (!account.ServiceURLs.ContainsKey("GatekeeperURI") && !string.IsNullOrEmpty(m_GatekeeperURL))
949 {
950 m_log.DebugFormat("[LLLOGIN SERVICE]: adding gatekeeper uri {0}", m_GatekeeperURL);
951 account.ServiceURLs["GatekeeperURI"] = m_GatekeeperURL;
952 newUrls = true;
953 }
954
948 // The grid operator decided to override the defaults in the 955 // The grid operator decided to override the defaults in the
949 // [LoginService] configuration. Let's store the correct ones. 956 // [LoginService] configuration. Let's store the correct ones.
950 if (newUrls) 957 if (newUrls)