aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IUserService.cs
diff options
context:
space:
mode:
authorDiva Canto2009-12-29 08:06:07 -0800
committerDiva Canto2009-12-29 08:06:07 -0800
commita462e440d5b5dca97f9b32fa41e24d763456ce97 (patch)
treed339c6e4e9b2426000910a9f75fc3f6c72b4debd /OpenSim/Services/Interfaces/IUserService.cs
parentAdded the ServiceURLs field to UserAccountData (diff)
downloadopensim-SC_OLD-a462e440d5b5dca97f9b32fa41e24d763456ce97.zip
opensim-SC_OLD-a462e440d5b5dca97f9b32fa41e24d763456ce97.tar.gz
opensim-SC_OLD-a462e440d5b5dca97f9b32fa41e24d763456ce97.tar.bz2
opensim-SC_OLD-a462e440d5b5dca97f9b32fa41e24d763456ce97.tar.xz
Better way of setting ServiceURLs
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/Interfaces/IUserService.cs14
1 files changed, 2 insertions, 12 deletions
diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs
index ecbb344..8279b9a 100644
--- a/OpenSim/Services/Interfaces/IUserService.cs
+++ b/OpenSim/Services/Interfaces/IUserService.cs
@@ -66,18 +66,8 @@ namespace OpenSim.Services.Interfaces
66 UUID.TryParse(kvp["ScopeID"].ToString(), out ScopeID); 66 UUID.TryParse(kvp["ScopeID"].ToString(), out ScopeID);
67 if (kvp.ContainsKey("Created")) 67 if (kvp.ContainsKey("Created"))
68 DateTime.TryParse(kvp["Created"].ToString(), out Created); 68 DateTime.TryParse(kvp["Created"].ToString(), out Created);
69 if (kvp.ContainsKey("ServiceURLs") && kvp["ServiceURLs"] != null) 69 if (kvp.ContainsKey("ServiceURLs") && kvp["ServiceURLs"] != null && (kvp["ServiceURLs"] is Dictionary<string, string>))
70 { 70 ServiceURLs = (Dictionary<string, string>)kvp["ServiceURLs"];
71 if (kvp["ServiceURLs"] is Dictionary<string, string>)
72 {
73 ServiceURLs = new Dictionary<string, string>();
74 foreach (KeyValuePair<string, string> urls in (Dictionary<string, string>)kvp["ServiceURLs"])
75 {
76 ServiceURLs.Add(urls.Key, urls.Value);
77 }
78 }
79 }
80
81 } 71 }
82 72
83 public Dictionary<string, object> ToKeyValuePairs() 73 public Dictionary<string, object> ToKeyValuePairs()