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

0.7.3-extended
Justin Clark-Casey (justincc) 2012-06-02 05:03:56 +01:00
parent f6730da13a
commit 896c4b6248
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.Items != null)