Bug fix in HGAssetService. POSTs back home (standalone) should now work.
parent
3b689e506f
commit
6d6d8445b9
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue