diff options
Heart surgery on asset service code bits. Affects OpenSim.ini configuration -- please see the example. Affects region servers only.
This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing.
Known problems:
* HG asset transfers are borked for now
* missing texture is missing
* 3 unit tests commented out for now
Diffstat (limited to 'OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs')
-rw-r--r-- | OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs index 167d081..4218ad7 100644 --- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs +++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | |||
@@ -88,7 +88,7 @@ namespace OpenSim.Client.VWoHTTP.ClientStack | |||
88 | if (!UUID.TryParse(param, out assetID)) | 88 | if (!UUID.TryParse(param, out assetID)) |
89 | return false; | 89 | return false; |
90 | 90 | ||
91 | AssetBase asset = m_scene.CommsManager.AssetCache.GetAsset(assetID, true); | 91 | AssetBase asset = m_scene.AssetService.Get(assetID.ToString()); |
92 | 92 | ||
93 | if (asset == null) | 93 | if (asset == null) |
94 | return false; | 94 | return false; |