revert some changes to groups V2 that will break external modules, with no special gain

This commit is contained in:
UbitUmarov
2020-06-10 12:36:10 +01:00
parent 0d76635113
commit a61b5d5d38
8 changed files with 12 additions and 12 deletions

View File

@@ -769,7 +769,7 @@ namespace OpenSim.Groups
if (!request.ContainsKey("RequestingAgentID") || !request.ContainsKey("Query"))
NullResult(result, "Bad network data");
List<DirGroupsReplyData> hits = m_GroupsService.FindGroups(new UUID(request["RequestingAgentID"].ToString()), request["Query"].ToString());
List<DirGroupsReplyData> hits = m_GroupsService.FindGroups(request["RequestingAgentID"].ToString(), request["Query"].ToString());
if (hits == null || (hits != null && hits.Count == 0))
NullResult(result, "No hits");