mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
Guarding the unpacking of the email field introduced by Robsmart. Most profiles don't have it. This may fix mantis #4134.
This commit is contained in:
@@ -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"];
|
||||
|
||||
Reference in New Issue
Block a user