aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities
diff options
context:
space:
mode:
authorDiva Canto2011-05-02 16:16:10 -0700
committerDiva Canto2011-05-02 16:16:10 -0700
commit6b52c1d6cdded66993b55d69dee3793e6b98f8c6 (patch)
treeabb0869729090f578ae1c5ab41cb4c2572442833 /OpenSim/Capabilities
parentWebFetchInventoryDescendents working. Tested with robust. (diff)
downloadopensim-SC_OLD-6b52c1d6cdded66993b55d69dee3793e6b98f8c6.zip
opensim-SC_OLD-6b52c1d6cdded66993b55d69dee3793e6b98f8c6.tar.gz
opensim-SC_OLD-6b52c1d6cdded66993b55d69dee3793e6b98f8c6.tar.bz2
opensim-SC_OLD-6b52c1d6cdded66993b55d69dee3793e6b98f8c6.tar.xz
Fix the GetTexture path to /CAPS/GetTexture for now until we have real capabilities.
Diffstat (limited to 'OpenSim/Capabilities')
-rw-r--r--OpenSim/Capabilities/Handlers/GetTexture/GetTextureServerConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Capabilities/Handlers/GetTexture/GetTextureServerConnector.cs b/OpenSim/Capabilities/Handlers/GetTexture/GetTextureServerConnector.cs
index 0335eac..0d072f7 100644
--- a/OpenSim/Capabilities/Handlers/GetTexture/GetTextureServerConnector.cs
+++ b/OpenSim/Capabilities/Handlers/GetTexture/GetTextureServerConnector.cs
@@ -62,7 +62,7 @@ namespace OpenSim.Capabilities.Handlers
62 if (m_AssetService == null) 62 if (m_AssetService == null)
63 throw new Exception(String.Format("Failed to load AssetService from {0}; config is {1}", assetService, m_ConfigName)); 63 throw new Exception(String.Format("Failed to load AssetService from {0}; config is {1}", assetService, m_ConfigName));
64 64
65 server.AddStreamHandler(new GetTextureHandler("/CAPS/" + UUID.Random() + "/", m_AssetService)); 65 server.AddStreamHandler(new GetTextureHandler("/CAPS/GetTexture/" /*+ UUID.Random() */, m_AssetService));
66 } 66 }
67 67
68 } 68 }