Properly set InventoryType.Snapshot when a snapshot is uploaded
Resolves http://opensimulator.org/mantis/view.php?id=6857 This prevents the inventory service complaining later about an attempt to change an invariantvarregion
parent
17b32b764a
commit
16aaba77d4
|
@ -501,6 +501,10 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||||
inType = 1;
|
inType = 1;
|
||||||
assType = 1;
|
assType = 1;
|
||||||
}
|
}
|
||||||
|
else if (inventoryType == "snapshot")
|
||||||
|
{
|
||||||
|
inType = (sbyte)InventoryType.Snapshot;
|
||||||
|
}
|
||||||
else if (inventoryType == "animation")
|
else if (inventoryType == "animation")
|
||||||
{
|
{
|
||||||
inType = 19;
|
inType = 19;
|
||||||
|
|
Loading…
Reference in New Issue