diff options
author | Diva Canto | 2013-06-08 11:00:22 -0700 |
---|---|---|
committer | Diva Canto | 2013-06-08 11:00:22 -0700 |
commit | d00770d56bf00640f23f462d8ab51f851530234c (patch) | |
tree | a6a3beb48283cde85e28d7161dd7059e2547129d /OpenSim/Addons | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-d00770d56bf00640f23f462d8ab51f851530234c.zip opensim-SC-d00770d56bf00640f23f462d8ab51f851530234c.tar.gz opensim-SC-d00770d56bf00640f23f462d8ab51f851530234c.tar.bz2 opensim-SC-d00770d56bf00640f23f462d8ab51f851530234c.tar.xz |
Groups V2 -- fix mantis #6666
Diffstat (limited to 'OpenSim/Addons')
-rw-r--r-- | OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs b/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs index 7e0b112..cff7adf 100644 --- a/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs +++ b/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs | |||
@@ -684,6 +684,9 @@ namespace OpenSim.Groups | |||
684 | { | 684 | { |
685 | serviceLocation = string.Empty; | 685 | serviceLocation = string.Empty; |
686 | name = string.Empty; | 686 | name = string.Empty; |
687 | if (groupID.Equals(UUID.Zero)) | ||
688 | return true; | ||
689 | |||
687 | ExtendedGroupRecord group = m_LocalGroupsConnector.GetGroupRecord(UUID.Zero.ToString(), groupID, string.Empty); | 690 | ExtendedGroupRecord group = m_LocalGroupsConnector.GetGroupRecord(UUID.Zero.ToString(), groupID, string.Empty); |
688 | if (group == null) | 691 | if (group == null) |
689 | { | 692 | { |