remove a parameter for detection of grid fail to suport getting multiple user accounts per call and handle it where needed.

This commit is contained in:
UbitUmarov
2016-08-13 23:41:57 +01:00
parent 7c1b2a5dde
commit 1337f5f26e
7 changed files with 31 additions and 15 deletions

View File

@@ -265,9 +265,9 @@ namespace OpenSim.Services.UserAccountService
return MakeUserAccount(d[0]);
}
public List<UserAccount> GetUserAccounts(UUID scopeID, List<string> IDs, out bool suported)
public List<UserAccount> GetUserAccounts(UUID scopeID, List<string> IDs)
{
suported = true;
// do it one at a time db access should be fast, so no need to break its api
List<UserAccount> accs = new List<UserAccount>();
UUID uuid = UUID.Zero;
foreach(string id in IDs)