aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/UserAccountService
diff options
context:
space:
mode:
authorUbitUmarov2016-08-13 23:41:57 +0100
committerUbitUmarov2016-08-13 23:41:57 +0100
commit1337f5f26e628dc7c5d038ffee5e957d95a72566 (patch)
treee022d04db0e0174ade41f0c497651f5ff2115c03 /OpenSim/Services/UserAccountService
parent add some wiring to have GetUserAccounts for multiple IDs on a single request... (diff)
downloadopensim-SC_OLD-1337f5f26e628dc7c5d038ffee5e957d95a72566.zip
opensim-SC_OLD-1337f5f26e628dc7c5d038ffee5e957d95a72566.tar.gz
opensim-SC_OLD-1337f5f26e628dc7c5d038ffee5e957d95a72566.tar.bz2
opensim-SC_OLD-1337f5f26e628dc7c5d038ffee5e957d95a72566.tar.xz
remove a parameter for detection of grid fail to suport getting multiple user accounts per call and handle it where needed.
Diffstat (limited to 'OpenSim/Services/UserAccountService')
-rw-r--r--OpenSim/Services/UserAccountService/UserAccountService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/UserAccountService/UserAccountService.cs b/OpenSim/Services/UserAccountService/UserAccountService.cs
index fbe5e3b..668fe53 100644
--- a/OpenSim/Services/UserAccountService/UserAccountService.cs
+++ b/OpenSim/Services/UserAccountService/UserAccountService.cs
@@ -265,9 +265,9 @@ namespace OpenSim.Services.UserAccountService
265 return MakeUserAccount(d[0]); 265 return MakeUserAccount(d[0]);
266 } 266 }
267 267
268 public List<UserAccount> GetUserAccounts(UUID scopeID, List<string> IDs, out bool suported) 268 public List<UserAccount> GetUserAccounts(UUID scopeID, List<string> IDs)
269 { 269 {
270 suported = true; 270 // do it one at a time db access should be fast, so no need to break its api
271 List<UserAccount> accs = new List<UserAccount>(); 271 List<UserAccount> accs = new List<UserAccount>();
272 UUID uuid = UUID.Zero; 272 UUID uuid = UUID.Zero;
273 foreach(string id in IDs) 273 foreach(string id in IDs)