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

0.7.4.1
Justin Clark-Casey (justincc) 2012-06-02 05:03:56 +01:00
parent 2de5479c3f
commit 729d90173f
1 changed files with 1 additions and 1 deletions

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)