Get the user's DOB back from the server response properly.

avinationmerge
Melanie Thielker 2010-05-29 05:14:18 +02:00
parent 542e6b8af4
commit e7bf6afd3a
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ namespace OpenSim.Services.Interfaces
UserTitle = kvp["UserTitle"].ToString();
if (kvp.ContainsKey("Created"))
Convert.ToInt32(kvp["Created"].ToString());
Created = Convert.ToInt32(kvp["Created"].ToString());
if (kvp.ContainsKey("ServiceURLs") && kvp["ServiceURLs"] != null)
{
ServiceURLs = new Dictionary<string, object>();