diff options
Diffstat (limited to 'OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs')
-rw-r--r-- | OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs b/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs index ae6c44b..f040ff7 100644 --- a/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs +++ b/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs | |||
@@ -224,7 +224,9 @@ namespace OpenSim.Capabilities.Handlers | |||
224 | // sending back the last byte instead of an error status | 224 | // sending back the last byte instead of an error status |
225 | if (start >= texture.Data.Length) | 225 | if (start >= texture.Data.Length) |
226 | { | 226 | { |
227 | response.StatusCode = (int)System.Net.HttpStatusCode.RequestedRangeNotSatisfiable; | 227 | // response.StatusCode = (int)System.Net.HttpStatusCode.RequestedRangeNotSatisfiable; |
228 | // viewers don't seem to handle RequestedRangeNotSatisfiable and keep retrying with same parameters | ||
229 | response.StatusCode = (int)System.Net.HttpStatusCode.NotFound; | ||
228 | } | 230 | } |
229 | else | 231 | else |
230 | { | 232 | { |