diff options
author | Melanie | 2009-09-02 16:27:08 +0100 |
---|---|---|
committer | Melanie | 2009-09-02 16:27:08 +0100 |
commit | 65d7644993086d44c2022728e09dccf8e8d4d449 (patch) | |
tree | 6d9ea95735a1b3ed7a14833bc148090fa4892d5b /OpenSim/Framework/Capabilities | |
parent | Prevent the Viewer's threaded inventory retrieval causing a OOM and overload (diff) | |
download | opensim-SC_OLD-65d7644993086d44c2022728e09dccf8e8d4d449.zip opensim-SC_OLD-65d7644993086d44c2022728e09dccf8e8d4d449.tar.gz opensim-SC_OLD-65d7644993086d44c2022728e09dccf8e8d4d449.tar.bz2 opensim-SC_OLD-65d7644993086d44c2022728e09dccf8e8d4d449.tar.xz |
Correct the icons on wearables in agent inventory. To fully correct the issue
immediately, run
update inventoryfolders set version=version+1;
Diffstat (limited to 'OpenSim/Framework/Capabilities')
-rw-r--r-- | OpenSim/Framework/Capabilities/Caps.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Capabilities/Caps.cs b/OpenSim/Framework/Capabilities/Caps.cs index 721d9ad..665bfe5 100644 --- a/OpenSim/Framework/Capabilities/Caps.cs +++ b/OpenSim/Framework/Capabilities/Caps.cs | |||
@@ -522,7 +522,7 @@ namespace OpenSim.Framework.Capabilities | |||
522 | llsdItem.asset_id = invItem.AssetID; | 522 | llsdItem.asset_id = invItem.AssetID; |
523 | llsdItem.created_at = invItem.CreationDate; | 523 | llsdItem.created_at = invItem.CreationDate; |
524 | llsdItem.desc = invItem.Description; | 524 | llsdItem.desc = invItem.Description; |
525 | llsdItem.flags = 0; | 525 | llsdItem.flags = (int)invItem.Flags; |
526 | llsdItem.item_id = invItem.ID; | 526 | llsdItem.item_id = invItem.ID; |
527 | llsdItem.name = invItem.Name; | 527 | llsdItem.name = invItem.Name; |
528 | llsdItem.parent_id = invItem.Folder; | 528 | llsdItem.parent_id = invItem.Folder; |