mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
Fixed check for 0 results in GetUserAccounts()
This commit is contained in:
committed by
Justin Clark-Casey (justincc)
parent
6935bec0ab
commit
ae701eccd2
@@ -162,7 +162,7 @@ namespace OpenSim.Services.Connectors
|
||||
|
||||
if (replyData != null)
|
||||
{
|
||||
if (replyData.ContainsKey("result") && replyData.ContainsKey("result").ToString() == "null")
|
||||
if (replyData.ContainsKey("result") && replyData["result"].ToString() == "null")
|
||||
{
|
||||
return accounts;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user