aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/UserManager.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/UserServer/UserManager.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Grid/UserServer/UserManager.cs b/OpenSim/Grid/UserServer/UserManager.cs
index a78876c..907a530 100644
--- a/OpenSim/Grid/UserServer/UserManager.cs
+++ b/OpenSim/Grid/UserServer/UserManager.cs
@@ -430,9 +430,9 @@ namespace OpenSim.Grid.UserServer
430 if (requestData.Contains("avatar_uuid")) 430 if (requestData.Contains("avatar_uuid"))
431 { 431 {
432 LLUUID guess = LLUUID.Zero; 432 LLUUID guess = LLUUID.Zero;
433 433
434 Helpers.TryParse((string)requestData["avatar_uuid"],out guess); 434 Helpers.TryParse((string)requestData["avatar_uuid"],out guess);
435 435
436 if (guess == LLUUID.Zero) 436 if (guess == LLUUID.Zero)
437 { 437 {
438 return CreateUnknownUserErrorResponse(); 438 return CreateUnknownUserErrorResponse();
@@ -444,7 +444,7 @@ namespace OpenSim.Grid.UserServer
444 { 444 {
445 return CreateUnknownUserErrorResponse(); 445 return CreateUnknownUserErrorResponse();
446 } 446 }
447 447
448 // no agent??? 448 // no agent???
449 if (userProfile.CurrentAgent == null) 449 if (userProfile.CurrentAgent == null)
450 { 450 {
@@ -456,7 +456,7 @@ namespace OpenSim.Grid.UserServer
456 responseData["session"]=userProfile.CurrentAgent.SessionID.ToString(); 456 responseData["session"]=userProfile.CurrentAgent.SessionID.ToString();
457 if (userProfile.CurrentAgent.AgentOnline) 457 if (userProfile.CurrentAgent.AgentOnline)
458 responseData["agent_online"]="TRUE"; 458 responseData["agent_online"]="TRUE";
459 else 459 else
460 responseData["agent_online"]="FALSE"; 460 responseData["agent_online"]="FALSE";
461 461
462 response.Value = responseData; 462 response.Value = responseData;