mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
Bug fix in HGAssetService. POSTs back home (standalone) should now work.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user