aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities/LLSDInventoryFolder.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-06-20 02:26:58 +0100
committerJustin Clark-Casey (justincc)2012-06-20 02:28:00 +0100
commitb23425c7c499d423235a724bc10c2cccc823132c (patch)
tree5815c38b43bba285e910ddd096d451c1625091a6 /OpenSim/Capabilities/LLSDInventoryFolder.cs
parentLower warn logging on not having friends/group module on permissions to debug. (diff)
downloadopensim-SC_OLD-b23425c7c499d423235a724bc10c2cccc823132c.zip
opensim-SC_OLD-b23425c7c499d423235a724bc10c2cccc823132c.tar.gz
opensim-SC_OLD-b23425c7c499d423235a724bc10c2cccc823132c.tar.bz2
opensim-SC_OLD-b23425c7c499d423235a724bc10c2cccc823132c.tar.xz
As with LLSDInventoryItem from commit 01a2b0b, send type values in LLSDInventoryFolder for inventory CAPs as integers rather than strings.
Should also resolve some issues with exceptions being thrown in some inventory fetches.
Diffstat (limited to 'OpenSim/Capabilities/LLSDInventoryFolder.cs')
-rw-r--r--OpenSim/Capabilities/LLSDInventoryFolder.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Capabilities/LLSDInventoryFolder.cs b/OpenSim/Capabilities/LLSDInventoryFolder.cs
index 3c216e9..d085430 100644
--- a/OpenSim/Capabilities/LLSDInventoryFolder.cs
+++ b/OpenSim/Capabilities/LLSDInventoryFolder.cs
@@ -35,7 +35,7 @@ namespace OpenSim.Framework.Capabilities
35 public UUID folder_id; 35 public UUID folder_id;
36 public UUID parent_id; 36 public UUID parent_id;
37 public string name; 37 public string name;
38 public string type; 38 public int type;
39 public string preferred_type; 39 public int preferred_type;
40 } 40 }
41} 41}