diff options
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs b/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs index 1dcc82a..1b45bcf 100644 --- a/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs +++ b/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs | |||
@@ -572,7 +572,11 @@ namespace OpenSim.Services.Connectors.Hypergrid | |||
572 | XmlRpcResponse response = null; | 572 | XmlRpcResponse response = null; |
573 | try | 573 | try |
574 | { | 574 | { |
575 | response = request.Send(m_ServerURL, 10000); | 575 | // We can not use m_ServerURL here anymore because it causes |
576 | // the HTTP request to be built without a host name. This messes | ||
577 | // with OSGrid's NGINX and can make OSGrid avatars unable to TP | ||
578 | // to other grids running recent mono. | ||
579 | response = request.Send(m_ServerURLHost, 10000); | ||
576 | } | 580 | } |
577 | catch (Exception e) | 581 | catch (Exception e) |
578 | { | 582 | { |