Fix build break whree accidentally did inv.Folders rather than inv.Folders.Count in a minor change.

This commit is contained in:
Justin Clark-Casey (justincc)
2012-06-02 05:03:56 +01:00
parent 2de5479c3f
commit 729d90173f

View File

@@ -170,7 +170,7 @@ namespace OpenSim.Capabilities.Handlers
contents.categories.Array.Add(ConvertInventoryFolder(invFolder));
}
descendents += inv.Folders;
descendents += inv.Folders.Count;
}
if (inv != null && inv.Items != null)