stop sending agent update again when destiny refused the agent

0.9.1.0-post-fixes
UbitUmarov 2018-09-15 00:44:10 +01:00
parent e96e923159
commit 391edb862e
1 changed files with 2 additions and 2 deletions

View File

@ -273,8 +273,8 @@ namespace OpenSim.Services.Connectors.Simulation
OSDMap result = WebUtil.PutToServiceCompressed(uri, args, timeout);
if (result["Success"].AsBoolean())
return true;
result = WebUtil.PutToService(uri, args, timeout);
if(ctx.OutboundVersion < 0.2)
result = WebUtil.PutToService(uri, args, timeout);
return result["Success"].AsBoolean();
}