diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index 3879910..f1e2f04 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | |||
@@ -753,7 +753,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
753 | m_log.WarnFormat("[OGS1 USER SERVICES]: Contacting MessagingServer about user-regions resulted in error: {0}", | 753 | m_log.WarnFormat("[OGS1 USER SERVICES]: Contacting MessagingServer about user-regions resulted in error: {0}", |
754 | respData == null ? "<unknown error>" : respData["faultMessage"]); | 754 | respData == null ? "<unknown error>" : respData["faultMessage"]); |
755 | } | 755 | } |
756 | else if(!respData.ContainsKey("count")) | 756 | else if (!respData.ContainsKey("count")) |
757 | { | 757 | { |
758 | m_log.WarnFormat("[OGS1 USER SERVICES]: Wrong format in response for MessagingServer request get_presence_info_bulk: missing 'count' field"); | 758 | m_log.WarnFormat("[OGS1 USER SERVICES]: Wrong format in response for MessagingServer request get_presence_info_bulk: missing 'count' field"); |
759 | } | 759 | } |
@@ -763,7 +763,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
763 | m_log.DebugFormat("[OGS1 USER SERVICES]: Request returned {0} results.", count); | 763 | m_log.DebugFormat("[OGS1 USER SERVICES]: Request returned {0} results.", count); |
764 | for (int i = 0; i < count; ++i) | 764 | for (int i = 0; i < count; ++i) |
765 | { | 765 | { |
766 | if(respData.ContainsKey("uuid_" + i) && respData.ContainsKey("isOnline_" + i) && respData.ContainsKey("regionHandle_" + i)) | 766 | if (respData.ContainsKey("uuid_" + i) && respData.ContainsKey("isOnline_" + i) && respData.ContainsKey("regionHandle_" + i)) |
767 | { | 767 | { |
768 | UUID uuid; | 768 | UUID uuid; |
769 | if (UUID.TryParse((string)respData["uuid_" + i], out uuid)) | 769 | if (UUID.TryParse((string)respData["uuid_" + i], out uuid)) |