aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities/Handlers/FetchInventoryDescendents/FetchInvDescHandler.cs
diff options
context:
space:
mode:
authorDiva Canto2015-05-08 06:57:06 -0700
committerDiva Canto2015-05-08 06:57:06 -0700
commita68aab14fa7c23d7af938b0b6a820bad51975f44 (patch)
treec3fbcefa49dc326579250ed4e83641ebd1f9ce7e /OpenSim/Capabilities/Handlers/FetchInventoryDescendents/FetchInvDescHandler.cs
parentMajor change in the way inventory is downloaded: added a method throughout II... (diff)
downloadopensim-SC_OLD-a68aab14fa7c23d7af938b0b6a820bad51975f44.zip
opensim-SC_OLD-a68aab14fa7c23d7af938b0b6a820bad51975f44.tar.gz
opensim-SC_OLD-a68aab14fa7c23d7af938b0b6a820bad51975f44.tar.bz2
opensim-SC_OLD-a68aab14fa7c23d7af938b0b6a820bad51975f44.tar.xz
Additional debug message to help diagnose a warning message and exception related to previous commit.
See http://opensimulator.org/mantis/view.php?id=7054#c28282
Diffstat (limited to '')
-rw-r--r--OpenSim/Capabilities/Handlers/FetchInventoryDescendents/FetchInvDescHandler.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Capabilities/Handlers/FetchInventoryDescendents/FetchInvDescHandler.cs b/OpenSim/Capabilities/Handlers/FetchInventoryDescendents/FetchInvDescHandler.cs
index a2f6740..e4ce1f3 100644
--- a/OpenSim/Capabilities/Handlers/FetchInventoryDescendents/FetchInvDescHandler.cs
+++ b/OpenSim/Capabilities/Handlers/FetchInventoryDescendents/FetchInvDescHandler.cs
@@ -590,6 +590,9 @@ namespace OpenSim.Capabilities.Handlers
590 // Do some post-processing. May need to fetch more from inv server for links 590 // Do some post-processing. May need to fetch more from inv server for links
591 foreach (InventoryCollection contents in fetchedContents) 591 foreach (InventoryCollection contents in fetchedContents)
592 { 592 {
593 if (contents == null)
594 continue;
595
593 InventoryCollectionWithDescendents coll = new InventoryCollectionWithDescendents(); 596 InventoryCollectionWithDescendents coll = new InventoryCollectionWithDescendents();
594 coll.Collection = contents; 597 coll.Collection = contents;
595 598