aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r--OpenSim/Grid/UserServer/UserManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/UserManager.cs b/OpenSim/Grid/UserServer/UserManager.cs
index 44f92b4..20f3b95 100644
--- a/OpenSim/Grid/UserServer/UserManager.cs
+++ b/OpenSim/Grid/UserServer/UserManager.cs
@@ -122,7 +122,7 @@ namespace OpenSim.Grid.UserServer
122 UserProfileData userProfile; 122 UserProfileData userProfile;
123 if (requestData.Contains("avatar_name")) 123 if (requestData.Contains("avatar_name"))
124 { 124 {
125 userProfile = getUserProfile((string)requestData["avatar_name"]); 125 userProfile = GetUserProfile((string)requestData["avatar_name"]);
126 if (userProfile == null) 126 if (userProfile == null)
127 { 127 {
128 return CreateUnknownUserErrorResponse(); 128 return CreateUnknownUserErrorResponse();
@@ -144,7 +144,7 @@ namespace OpenSim.Grid.UserServer
144 System.Console.WriteLine("METHOD BY UUID CALLED"); 144 System.Console.WriteLine("METHOD BY UUID CALLED");
145 if (requestData.Contains("avatar_uuid")) 145 if (requestData.Contains("avatar_uuid"))
146 { 146 {
147 userProfile = getUserProfile((LLUUID)(string)requestData["avatar_uuid"]); 147 userProfile = GetUserProfile((LLUUID)(string)requestData["avatar_uuid"]);
148 if (userProfile == null) 148 if (userProfile == null)
149 { 149 {
150 return CreateUnknownUserErrorResponse(); 150 return CreateUnknownUserErrorResponse();