aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities/Handlers/WebFetchInventoryDescendents/WebFetchInvDescHandler.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-06-02 05:03:56 +0100
committerJustin Clark-Casey (justincc)2012-06-02 05:03:56 +0100
commit729d90173f82f5ac51b8b69ee8b3362599ffd2f1 (patch)
tree16d92890e213b58132fccf3fd2b0682fcd00805d /OpenSim/Capabilities/Handlers/WebFetchInventoryDescendents/WebFetchInvDescHandler.cs
parentminor: tidy up some comments (diff)
downloadopensim-SC_OLD-729d90173f82f5ac51b8b69ee8b3362599ffd2f1.zip
opensim-SC_OLD-729d90173f82f5ac51b8b69ee8b3362599ffd2f1.tar.gz
opensim-SC_OLD-729d90173f82f5ac51b8b69ee8b3362599ffd2f1.tar.bz2
opensim-SC_OLD-729d90173f82f5ac51b8b69ee8b3362599ffd2f1.tar.xz
Fix build break whree accidentally did inv.Folders rather than inv.Folders.Count in a minor change.
Diffstat (limited to '')
-rw-r--r--OpenSim/Capabilities/Handlers/WebFetchInventoryDescendents/WebFetchInvDescHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Capabilities/Handlers/WebFetchInventoryDescendents/WebFetchInvDescHandler.cs b/OpenSim/Capabilities/Handlers/WebFetchInventoryDescendents/WebFetchInvDescHandler.cs
index 1594c55..849cad2 100644
--- a/OpenSim/Capabilities/Handlers/WebFetchInventoryDescendents/WebFetchInvDescHandler.cs
+++ b/OpenSim/Capabilities/Handlers/WebFetchInventoryDescendents/WebFetchInvDescHandler.cs
@@ -170,7 +170,7 @@ namespace OpenSim.Capabilities.Handlers
170 contents.categories.Array.Add(ConvertInventoryFolder(invFolder)); 170 contents.categories.Array.Add(ConvertInventoryFolder(invFolder));
171 } 171 }
172 172
173 descendents += inv.Folders; 173 descendents += inv.Folders.Count;
174 } 174 }
175 175
176 if (inv != null && inv.Items != null) 176 if (inv != null && inv.Items != null)