aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/UserAccountService/UserAccountService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/UserAccountService/UserAccountService.cs')
-rw-r--r--OpenSim/Services/UserAccountService/UserAccountService.cs32
1 files changed, 20 insertions, 12 deletions
diff --git a/OpenSim/Services/UserAccountService/UserAccountService.cs b/OpenSim/Services/UserAccountService/UserAccountService.cs
index c55013f..ffb9cca 100644
--- a/OpenSim/Services/UserAccountService/UserAccountService.cs
+++ b/OpenSim/Services/UserAccountService/UserAccountService.cs
@@ -122,28 +122,36 @@ namespace OpenSim.Services.UserAccountService
122 u.LastName = d.LastName; 122 u.LastName = d.LastName;
123 u.PrincipalID = d.PrincipalID; 123 u.PrincipalID = d.PrincipalID;
124 u.ScopeID = d.ScopeID; 124 u.ScopeID = d.ScopeID;
125 u.Email = d.Data["Email"].ToString(); 125 if (d.Data.ContainsKey("Email") && d.Data["Email"] != null)
126 u.Email = d.Data["Email"].ToString();
127 else
128 u.Email = string.Empty;
126 u.Created = Convert.ToInt32(d.Data["Created"].ToString()); 129 u.Created = Convert.ToInt32(d.Data["Created"].ToString());
127 if (d.Data["UserTitle"] != null) 130 if (d.Data.ContainsKey("UserTitle") && d.Data["UserTitle"] != null)
128 u.UserTitle = d.Data["UserTitle"].ToString(); 131 u.UserTitle = d.Data["UserTitle"].ToString();
129 else 132 else
130 u.UserTitle = string.Empty; 133 u.UserTitle = string.Empty;
131 134
132 string[] URLs = d.Data["ServiceURLs"].ToString().Split(new char[] { ' ' }); 135 if (d.Data.ContainsKey("ServiceURLs") && d.Data["ServiceURLs"] != null)
133 u.ServiceURLs = new Dictionary<string, object>();
134
135 foreach (string url in URLs)
136 { 136 {
137 string[] parts = url.Split(new char[] { '=' }); 137 string[] URLs = d.Data["ServiceURLs"].ToString().Split(new char[] { ' ' });
138 u.ServiceURLs = new Dictionary<string, object>();
139
140 foreach (string url in URLs)
141 {
142 string[] parts = url.Split(new char[] { '=' });
138 143
139 if (parts.Length != 2) 144 if (parts.Length != 2)
140 continue; 145 continue;
141 146
142 string name = System.Web.HttpUtility.UrlDecode(parts[0]); 147 string name = System.Web.HttpUtility.UrlDecode(parts[0]);
143 string val = System.Web.HttpUtility.UrlDecode(parts[1]); 148 string val = System.Web.HttpUtility.UrlDecode(parts[1]);
144 149
145 u.ServiceURLs[name] = val; 150 u.ServiceURLs[name] = val;
151 }
146 } 152 }
153 else
154 u.ServiceURLs = new Dictionary<string, object>();
147 155
148 return u; 156 return u;
149 } 157 }