Honor the temp and local asset flags
parent
09df50915d
commit
50b305b006
|
@ -208,6 +208,8 @@ namespace OpenSim.Region.CoreModules.ServiceConnectors.Asset
|
||||||
public string Store(AssetBase asset)
|
public string Store(AssetBase asset)
|
||||||
{
|
{
|
||||||
m_Cache.Cache(asset);
|
m_Cache.Cache(asset);
|
||||||
|
if (asset.Temporary || asset.Local)
|
||||||
|
return asset.ID;
|
||||||
return m_AssetService.Store(asset);
|
return m_AssetService.Store(asset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -230,6 +230,14 @@ namespace OpenSim.Region.CoreModules.ServiceConnectors.Asset
|
||||||
|
|
||||||
public string Store(AssetBase asset)
|
public string Store(AssetBase asset)
|
||||||
{
|
{
|
||||||
|
if (asset.Temporary || asset.Local)
|
||||||
|
{
|
||||||
|
if (m_Cache != null)
|
||||||
|
m_Cache.Cache(asset);
|
||||||
|
|
||||||
|
return asset.ID;
|
||||||
|
}
|
||||||
|
|
||||||
string uri = m_ServerURI + "/assets/";
|
string uri = m_ServerURI + "/assets/";
|
||||||
|
|
||||||
string newID = SynchronousRestObjectRequester.
|
string newID = SynchronousRestObjectRequester.
|
||||||
|
@ -237,6 +245,8 @@ namespace OpenSim.Region.CoreModules.ServiceConnectors.Asset
|
||||||
|
|
||||||
if (newID != String.Empty)
|
if (newID != String.Empty)
|
||||||
{
|
{
|
||||||
|
asset.ID = newID;
|
||||||
|
|
||||||
if (m_Cache != null)
|
if (m_Cache != null)
|
||||||
m_Cache.Cache(asset);
|
m_Cache.Cache(asset);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue