Bug fix in HGAssetService. POSTs back home (standalone) should now work.

0.6.6-post-fixes
diva 2009-05-22 18:02:49 +00:00
parent 3b689e506f
commit 6d6d8445b9
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ namespace OpenSim.Services.AssetService
assetUri.Scheme == Uri.UriSchemeHttp)
{
url = "http://" + assetUri.Authority;
assetID = assetUri.LocalPath;
assetID = assetUri.LocalPath.Trim(new char[] {'/'});
return true;
}