Fix an issue where the client supplies an empty name and it was applied

to the inventory item, causing the item to wind up without a name.
0.6.0-stable
Melanie Thielker 2008-08-29 11:03:58 +00:00
parent 35ad484b6b
commit ee0a5caa30
1 changed files with 4 additions and 0 deletions

View File

@ -538,6 +538,10 @@ namespace OpenSim.Region.Environment.Scenes
{
asset.Name = newName;
}
else
{
newName = item.Name;
}
if (remoteClient.AgentId == oldAgentID)
{