bug fix: wrong parameters order

This commit is contained in:
UbitUmarov
2020-10-28 22:54:24 +00:00
parent e22b3bfa35
commit 054c8aec4e

View File

@@ -90,7 +90,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
private AssetBase FetchAsset(string url, UUID assetID)
{
return m_scene.AssetService.Get(url, assetID.ToString(), true);
return m_scene.AssetService.Get(assetID.ToString(), url, true);
}
public bool PostAsset(string url, AssetBase asset, bool verbose = true)