summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeslie Linden <leslie@lindenlab.com>2012-01-23 15:55:36 -0800
committerLeslie Linden <leslie@lindenlab.com>2012-01-23 15:55:36 -0800
commitea6cbc7b6b1de051a9bb1c311c4399a2b4d42cb3 (patch)
tree3fbd1b669a8de3822a012cc17d8f608128e8ba40
parent83ca425158fb56cab08c8a44ddad93ca222e58d7 (diff)
Reverting background fetch on an item to the old fetFromServer call to fix regression bug in inventory late loading
-rw-r--r--indra/newview/llinventorybridge.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index 9e21e2fceb..c0065a94e6 100644
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -1324,7 +1324,8 @@ void LLItemBridge::selectItem()
LLViewerInventoryItem* item = static_cast<LLViewerInventoryItem*>(getItem());
if(item && !item->isFinished())
{
- LLInventoryModelBackgroundFetch::instance().start(item->getUUID(), false);
+ item->fetchFromServer();
+ //LLInventoryModelBackgroundFetch::instance().start(item->getUUID(), false);
}
}