Guarding the unpacking of the email field introduced by Robsmart. Most profiles don't have it. This may fix mantis #4134.
parent
cfa0cbdffa
commit
40c3ac4aeb
|
@ -651,7 +651,8 @@ namespace OpenSim.Region.Communications.OGS1
|
|||
UserProfileData userData = new UserProfileData();
|
||||
userData.FirstName = (string)data["firstname"];
|
||||
userData.SurName = (string)data["lastname"];
|
||||
userData.Email = (string)data["email"];
|
||||
if (data["email"] != null)
|
||||
userData.Email = (string)data["email"];
|
||||
userData.ID = new UUID((string)data["uuid"]);
|
||||
userData.Created = Convert.ToInt32(data["profile_created"]);
|
||||
userData.UserInventoryURI = (string)data["server_inventory"];
|
||||
|
|
Loading…
Reference in New Issue