aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities
diff options
context:
space:
mode:
authorUbitUmarov2018-11-23 00:42:05 +0000
committerUbitUmarov2018-11-23 00:42:05 +0000
commit56845d4b75ecd2d576aa117523d1dac500e9c233 (patch)
tree2f8ba1cdec1cb77eebe7b7051b6077a5c162cd0d /OpenSim/Capabilities
parentYengine: try read XEngine state from wire (diff)
downloadopensim-SC-56845d4b75ecd2d576aa117523d1dac500e9c233.zip
opensim-SC-56845d4b75ecd2d576aa117523d1dac500e9c233.tar.gz
opensim-SC-56845d4b75ecd2d576aa117523d1dac500e9c233.tar.bz2
opensim-SC-56845d4b75ecd2d576aa117523d1dac500e9c233.tar.xz
mantis 8411: fix send inventory item flags mask
Diffstat (limited to 'OpenSim/Capabilities')
-rw-r--r--OpenSim/Capabilities/Handlers/FetchInventory/FetchInventory2Handler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Capabilities/Handlers/FetchInventory/FetchInventory2Handler.cs b/OpenSim/Capabilities/Handlers/FetchInventory/FetchInventory2Handler.cs
index bae4cf6..e25ead4 100644
--- a/OpenSim/Capabilities/Handlers/FetchInventory/FetchInventory2Handler.cs
+++ b/OpenSim/Capabilities/Handlers/FetchInventory/FetchInventory2Handler.cs
@@ -99,7 +99,7 @@ namespace OpenSim.Capabilities.Handlers
99 foreach (InventoryItemBase item in items) 99 foreach (InventoryItemBase item in items)
100 { 100 {
101 if (item != null) 101 if (item != null)
102 item.ToLLSDxml(lsl); 102 item.ToLLSDxml(lsl, 0xff);
103 } 103 }
104 LLSDxmlEncode.AddEndArray(lsl); 104 LLSDxmlEncode.AddEndArray(lsl);
105 } 105 }