SH-480 FIX meshes are not added to objects folder on upload

curl host scrubbing was causing object creation for mesh prims to fail.
Commenting out the offending lines so we can have a functional release.
Will file a separate bug for Vir to investigate when/if we can re-enable
host scrubbing on these URLs for a future release.

Approach approved by davep.
master
Nyx (Neal Orman) 2010-11-17 20:04:30 -05:00
parent 29a9e9acbb
commit 48e2ec0340
1 changed files with 2 additions and 2 deletions

View File

@ -1409,8 +1409,8 @@ LLMeshUploadThread::LLMeshUploadThread(LLMeshUploadThread::instance_list& data,
mUploadObjectAssetCapability = gAgent.getRegion()->getCapability("UploadObjectAsset");
mNewInventoryCapability = gAgent.getRegion()->getCapability("NewFileAgentInventoryVariablePrice");
mUploadObjectAssetCapability = scrub_host_name(mUploadObjectAssetCapability);
mNewInventoryCapability = scrub_host_name(mNewInventoryCapability);
//mUploadObjectAssetCapability = scrub_host_name(mUploadObjectAssetCapability);
//mNewInventoryCapability = scrub_host_name(mNewInventoryCapability);
mOrigin += gAgent.getAtAxis() * scale.magVec();
}