If updating a user's profile notes fails then return an error
Resolves http://opensimulator.org/mantis/view.php?id=69380.8.0.3
parent
1b30ae81b5
commit
8cec0b3fa1
|
@ -273,10 +273,10 @@ namespace OpenSim.Server.Handlers
|
|||
response.Result = OSD.SerializeMembers(note);
|
||||
return true;
|
||||
}
|
||||
|
||||
object Notes = (object) note;
|
||||
OSD.DeserializeMembers(ref Notes, (OSDMap)json["params"]);
|
||||
return true;
|
||||
|
||||
response.Error.Code = ErrorCode.InternalError;
|
||||
response.Error.Message = "Error reading notes";
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool NotesUpdate(OSDMap json, ref JsonRpcResponse response)
|
||||
|
|
Loading…
Reference in New Issue