aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDiva Canto2010-03-03 09:16:21 -0800
committerDiva Canto2010-03-03 09:16:21 -0800
commitaee887afaf3982253a2a5bf0724828a6718a406b (patch)
treeceaff591d82c60a7dfe51abae7b111e77372b625
parentMore debug. (diff)
downloadopensim-SC_OLD-aee887afaf3982253a2a5bf0724828a6718a406b.zip
opensim-SC_OLD-aee887afaf3982253a2a5bf0724828a6718a406b.tar.gz
opensim-SC_OLD-aee887afaf3982253a2a5bf0724828a6718a406b.tar.bz2
opensim-SC_OLD-aee887afaf3982253a2a5bf0724828a6718a406b.tar.xz
Added empty service URLs upon account creation.
-rw-r--r--OpenSim/Services/UserAccountService/UserAccountService.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Services/UserAccountService/UserAccountService.cs b/OpenSim/Services/UserAccountService/UserAccountService.cs
index e498bd5..ca6e44a 100644
--- a/OpenSim/Services/UserAccountService/UserAccountService.cs
+++ b/OpenSim/Services/UserAccountService/UserAccountService.cs
@@ -280,6 +280,15 @@ namespace OpenSim.Services.UserAccountService
280 if (null == account) 280 if (null == account)
281 { 281 {
282 account = new UserAccount(UUID.Zero, firstName, lastName, email); 282 account = new UserAccount(UUID.Zero, firstName, lastName, email);
283 if (account.ServiceURLs == null)
284 {
285 account.ServiceURLs = new Dictionary<string, object>();
286 account.ServiceURLs["HomeURI"] = string.Empty;
287 account.ServiceURLs["GatekeeperURI"] = string.Empty;
288 account.ServiceURLs["InventoryServerURI"] = string.Empty;
289 account.ServiceURLs["AssetServerURI"] = string.Empty;
290 }
291
283 if (StoreUserAccount(account)) 292 if (StoreUserAccount(account))
284 { 293 {
285 bool success = false; 294 bool success = false;