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.
This commit is contained in:
Melanie Thielker
2008-08-29 11:03:58 +00:00
parent 35ad484b6b
commit ee0a5caa30

View File

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