cross avatar group info also if title is empty string

0.9.0-post-fixes
UbitUmarov 2017-05-21 05:16:18 +01:00
parent a2c2456076
commit 7c3200b393
1 changed files with 4 additions and 1 deletions

View File

@ -4687,7 +4687,10 @@ namespace OpenSim.Region.Framework.Scenes
cAgent.agentCOF = COF;
cAgent.ActiveGroupID = ControllingClient.ActiveGroupId;
cAgent.ActiveGroupName = ControllingClient.ActiveGroupName;
cAgent.ActiveGroupTitle = Grouptitle;
if(Grouptitle == null)
cAgent.ActiveGroupTitle = String.Empty;
else
cAgent.ActiveGroupTitle = Grouptitle;
}
}