* The fallthrough of FetchTexture was no longer resulting in a 404 response on missing textures. It was just waiting and no event was being provided. This re-enables the 404 response.

avinationmerge
teravus 2013-01-21 21:32:48 -05:00
parent 09a3e134e4
commit 89676b8a48
1 changed files with 10 additions and 1 deletions

View File

@ -176,8 +176,17 @@ namespace OpenSim.Capabilities.Handlers
return true;
}
response = new Hashtable();
response["int_response_code"] = 404;
response["str_response_string"] = "not found";
response["content_type"] = "text/plain";
response["keepalive"] = false;
response["reusecontext"] = false;
response["int_bytes"] = 0;
//WriteTextureData(request,response,null,format);
// not found
// m_log.Warn("[GETTEXTURE]: Texture " + textureID + " not found");
//m_log.Warn("[GETTEXTURE]: Texture " + textureID + " not found");
return true;
}