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

soprefactor
Melanie Thielker 2010-05-29 05:14:18 +02:00 committed by Melanie
parent 191db0e6a4
commit cd77648f48
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>();