summaryrefslogtreecommitdiff
path: root/indra/llmessage
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2010-04-19 10:00:06 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2010-04-19 10:00:06 -0400
commit695e4bc17126baa282c7f27e8ac9ef1c3323fa77 (patch)
tree47a403493e9d57278b606623ba07fdf0a791d1d7 /indra/llmessage
parent3b8ce1d18aafd7c0b4bc5eee4fb74054a7a1a819 (diff)
For EXT-6809 - search static VFS for all asset types
Diffstat (limited to 'indra/llmessage')
-rw-r--r--indra/llmessage/llassetstorage.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llmessage/llassetstorage.cpp b/indra/llmessage/llassetstorage.cpp
index e65a488098..f8b929769d 100644
--- a/indra/llmessage/llassetstorage.cpp
+++ b/indra/llmessage/llassetstorage.cpp
@@ -418,8 +418,8 @@ bool LLAssetStorage::findInVFSAndInvokeCallback(LLVFS *vfs, const LLUUID& uuid,
if (callback)
{
callback(vfs, uuid, type, user_data, LL_ERR_NOERR, LL_EXSTAT_VFS_CACHED);
- return true;
}
+ return true;
}
else
{
@@ -454,6 +454,7 @@ void LLAssetStorage::getAssetData(const LLUUID uuid, LLAssetType::EType type, LL
return;
}
+ // Try static VFS first.
if (findInVFSAndInvokeCallback(mStaticVFS,uuid,type,callback,user_data))
{
return;
@@ -652,6 +653,7 @@ void LLAssetStorage::getEstateAsset(const LLHost &object_sim, const LLUUID &agen
return;
}
+ // Try static VFS first.
if (findInVFSAndInvokeCallback(mStaticVFS,asset_id,atype,callback,user_data))
{
return;