diff options
author | UbitUmarov | 2018-02-04 00:16:51 +0000 |
---|---|---|
committer | UbitUmarov | 2018-02-04 00:16:51 +0000 |
commit | e685d8dcef548ac4b795fb013d33bda81ff7de22 (patch) | |
tree | 2e289734f2ea0c47cf831f066623c23a8964cb46 | |
parent | do not timeout floatsam assets caching thread (diff) | |
download | opensim-SC-e685d8dcef548ac4b795fb013d33bda81ff7de22.zip opensim-SC-e685d8dcef548ac4b795fb013d33bda81ff7de22.tar.gz opensim-SC-e685d8dcef548ac4b795fb013d33bda81ff7de22.tar.bz2 opensim-SC-e685d8dcef548ac4b795fb013d33bda81ff7de22.tar.xz |
mantis 8287: applied modified patch by hand, thx watcher64
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupsServicesConnectorModule.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupsServicesConnectorModule.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupsServicesConnectorModule.cs index 50d3f94..fab7e8c 100644 --- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupsServicesConnectorModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupsServicesConnectorModule.cs | |||
@@ -666,6 +666,8 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
666 | data.ListInProfile = ((string)membership["ListInProfile"]) == "1"; | 666 | data.ListInProfile = ((string)membership["ListInProfile"]) == "1"; |
667 | data.AgentPowers = ulong.Parse((string)membership["AgentPowers"]); | 667 | data.AgentPowers = ulong.Parse((string)membership["AgentPowers"]); |
668 | data.Title = (string)membership["Title"]; | 668 | data.Title = (string)membership["Title"]; |
669 | if(membership.ContainsKey("OnlineStatus")) | ||
670 | data.OnlineStatus = (string)membership["OnlineStatus"]; | ||
669 | 671 | ||
670 | members.Add(data); | 672 | members.Add(data); |
671 | } | 673 | } |