mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
bug fix: wrong parameters order
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user