diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 1dfd5b4..4a48a80 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -11135,6 +11135,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11135 | GroupProfileData d = m_GroupsModule.GroupProfileRequest(this, | 11135 | GroupProfileData d = m_GroupsModule.GroupProfileRequest(this, |
11136 | groupProfileRequest.GroupData.GroupID); | 11136 | groupProfileRequest.GroupData.GroupID); |
11137 | 11137 | ||
11138 | if(d.GroupID == UUID.Zero) // don't send broken data | ||
11139 | return true; | ||
11140 | |||
11138 | groupProfileReply.GroupData.GroupID = d.GroupID; | 11141 | groupProfileReply.GroupData.GroupID = d.GroupID; |
11139 | groupProfileReply.GroupData.Name = Util.StringToBytes256(d.Name); | 11142 | groupProfileReply.GroupData.Name = Util.StringToBytes256(d.Name); |
11140 | groupProfileReply.GroupData.Charter = Util.StringToBytes1024(d.Charter); | 11143 | groupProfileReply.GroupData.Charter = Util.StringToBytes1024(d.Charter); |