Bug fix in inventory fetching: sometimes the caps request comes before there is a scene presence, and that's ok.
parent
4a516fa156
commit
017d2cf417
|
@ -267,11 +267,6 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||||
Request = (x, y) =>
|
Request = (x, y) =>
|
||||||
{
|
{
|
||||||
ScenePresence sp = m_module.Scene.GetScenePresence(Id);
|
ScenePresence sp = m_module.Scene.GetScenePresence(Id);
|
||||||
if (sp == null)
|
|
||||||
{
|
|
||||||
m_log.ErrorFormat("[INVENTORY]: Unable to find ScenePresence for {0}", Id);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
aPollRequest reqinfo = new aPollRequest();
|
aPollRequest reqinfo = new aPollRequest();
|
||||||
reqinfo.thepoll = this;
|
reqinfo.thepoll = this;
|
||||||
|
|
Loading…
Reference in New Issue