diff options
author | UbitUmarov | 2012-09-06 18:41:21 +0100 |
---|---|---|
committer | UbitUmarov | 2012-09-06 18:41:21 +0100 |
commit | f53ca6285bc21155a2fdad953b9063a4f8cd5d21 (patch) | |
tree | 9df0c9b2d458c952eef2e41b92826a7bad44f8e7 /OpenSim/Services/Connectors/Asset | |
parent | Prevent double slashes, try #3 (diff) | |
download | opensim-SC-f53ca6285bc21155a2fdad953b9063a4f8cd5d21.zip opensim-SC-f53ca6285bc21155a2fdad953b9063a4f8cd5d21.tar.gz opensim-SC-f53ca6285bc21155a2fdad953b9063a4f8cd5d21.tar.bz2 opensim-SC-f53ca6285bc21155a2fdad953b9063a4f8cd5d21.tar.xz |
Prevent double slashes, try #4
Diffstat (limited to 'OpenSim/Services/Connectors/Asset')
-rw-r--r-- | OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs b/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs index 091e41a..9e04601 100644 --- a/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs +++ b/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs | |||
@@ -129,7 +129,7 @@ namespace OpenSim.Services.Connectors | |||
129 | string ret = serverUri.Uri.AbsoluteUri; | 129 | string ret = serverUri.Uri.AbsoluteUri; |
130 | if (ret.EndsWith("/")) | 130 | if (ret.EndsWith("/")) |
131 | ret = ret.Substring(0, ret.Length - 1); | 131 | ret = ret.Substring(0, ret.Length - 1); |
132 | return serverUri.Uri.AbsoluteUri; | 132 | return ret; |
133 | } | 133 | } |
134 | 134 | ||
135 | protected void retryCheck(object source, ElapsedEventArgs e) | 135 | protected void retryCheck(object source, ElapsedEventArgs e) |