diff options
Diffstat (limited to 'indra/llmessage')
| -rw-r--r-- | indra/llmessage/llassetstorage.cpp | 4 | 
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; | 
