in HGAssetBroker do cache all if asset id changed
parent
b566be4f82
commit
963b296f93
|
@ -367,10 +367,12 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Asset
|
||||||
if (String.IsNullOrEmpty(id))
|
if (String.IsNullOrEmpty(id))
|
||||||
return string.Empty;
|
return string.Empty;
|
||||||
|
|
||||||
|
if(asset.ID != id)
|
||||||
|
{
|
||||||
asset.ID = id;
|
asset.ID = id;
|
||||||
|
if (m_Cache != null)
|
||||||
if (isHG && m_Cache != null)
|
|
||||||
m_Cache.Cache(asset);
|
m_Cache.Cache(asset);
|
||||||
|
}
|
||||||
|
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue