* 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.
parent
09a3e134e4
commit
89676b8a48
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue