The image render module is returning everything twice. Once with
  data, once with null. This change adds a return to stop this
  behavior. This was not apparent until I added a message to the
  catching routine which issued a warning message when no data was
  returned.
This commit is contained in:
Dr Scofield
2009-05-19 18:34:04 +00:00
parent 88f17010b7
commit 8559f9bbba

View File

@@ -211,6 +211,7 @@ namespace OpenSim.Region.CoreModules.Scripting.LoadImageURL
}
m_textureManager.ReturnData(state.RequestID, imageJ2000);
return;
}
}
catch (WebException)