aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorMike Mazur2009-01-19 02:30:51 +0000
committerMike Mazur2009-01-19 02:30:51 +0000
commit92e6bbcd63d08a8f2d6accf668f630165a924d1d (patch)
treea1c8703fa2e0f5c172c58d8dfee122981264401c /OpenSim
parentUpdate svn properties. (diff)
downloadopensim-SC_OLD-92e6bbcd63d08a8f2d6accf668f630165a924d1d.zip
opensim-SC_OLD-92e6bbcd63d08a8f2d6accf668f630165a924d1d.tar.gz
opensim-SC_OLD-92e6bbcd63d08a8f2d6accf668f630165a924d1d.tar.bz2
opensim-SC_OLD-92e6bbcd63d08a8f2d6accf668f630165a924d1d.tar.xz
No longer append a "texture" parameter on texture asset requests. The
asset server doesn't check for the existence of this parameter since r2744.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Framework/Communications/Cache/GridAssetClient.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/GridAssetClient.cs b/OpenSim/Framework/Communications/Cache/GridAssetClient.cs
index 1c947dc..e27c4f4 100644
--- a/OpenSim/Framework/Communications/Cache/GridAssetClient.cs
+++ b/OpenSim/Framework/Communications/Cache/GridAssetClient.cs
@@ -56,8 +56,6 @@ namespace OpenSim.Framework.Communications.Cache
56 RestClient rc = new RestClient(_assetServerUrl); 56 RestClient rc = new RestClient(_assetServerUrl);
57 rc.AddResourcePath("assets"); 57 rc.AddResourcePath("assets");
58 rc.AddResourcePath(req.AssetID.ToString()); 58 rc.AddResourcePath(req.AssetID.ToString());
59 if (req.IsTexture)
60 rc.AddQueryParameter("texture");
61 59
62 rc.RequestMethod = "GET"; 60 rc.RequestMethod = "GET";
63 61