aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities
diff options
context:
space:
mode:
authorMelanie2019-08-07 17:58:08 +0100
committerMelanie2019-08-07 17:58:08 +0100
commitd781742d8e966bedb7ac0f9e637003d090a35375 (patch)
treebd60ff26f75c3bbf0ae4a1ce8e4f37771d3e53ab /OpenSim/Capabilities
parentAlso remove the defaults from Configger (diff)
downloadopensim-SC-d781742d8e966bedb7ac0f9e637003d090a35375.zip
opensim-SC-d781742d8e966bedb7ac0f9e637003d090a35375.tar.gz
opensim-SC-d781742d8e966bedb7ac0f9e637003d090a35375.tar.bz2
opensim-SC-d781742d8e966bedb7ac0f9e637003d090a35375.tar.xz
Fix scope support to get friends list names across co-hosted grids
Diffstat (limited to 'OpenSim/Capabilities')
-rw-r--r--OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs b/OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs
index 41cfdb6..199eef1 100644
--- a/OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs
+++ b/OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs
@@ -70,7 +70,7 @@ namespace OpenSim.Capabilities.Handlers
70 return new byte[0]; 70 return new byte[0];
71 } 71 }
72 72
73 Dictionary<UUID,string> names = m_UserManagement.GetUsersNames(ids); 73 Dictionary<UUID,string> names = m_UserManagement.GetUsersNames(ids, UUID.Zero);
74 74
75 OSDMap osdReply = new OSDMap(); 75 OSDMap osdReply = new OSDMap();
76 OSDArray agents = new OSDArray(); 76 OSDArray agents = new OSDArray();