mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
apply similar changes to groups V2
This commit is contained in:
@@ -153,7 +153,7 @@ namespace OpenSim.Groups
|
||||
return GroupsDataUtils.GroupRecord((Dictionary<string, object>)ret["RESULT"]);
|
||||
}
|
||||
|
||||
public List<DirGroupsReplyData> FindGroups(string RequestingAgentID, string query)
|
||||
public List<DirGroupsReplyData> FindGroups(UUID RequestingAgentID, string query)
|
||||
{
|
||||
List<DirGroupsReplyData> hits = new List<DirGroupsReplyData>();
|
||||
if (string.IsNullOrEmpty(query))
|
||||
@@ -161,7 +161,7 @@ namespace OpenSim.Groups
|
||||
|
||||
Dictionary<string, object> sendData = new Dictionary<string, object>();
|
||||
sendData["Query"] = query;
|
||||
sendData["RequestingAgentID"] = RequestingAgentID;
|
||||
sendData["RequestingAgentID"] = RequestingAgentID.ToString();
|
||||
|
||||
Dictionary<string, object> ret = MakeRequest("FINDGROUPS", sendData);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user