Minor: change the return value of unsuccessful posts to string.Empty.

This commit is contained in:
Diva Canto
2012-09-21 06:41:32 -07:00
parent e379566e6e
commit 5f97b3e1d9
2 changed files with 2 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ namespace OpenSim.Services.HypergridService
public override string Store(AssetBase asset)
{
if (!m_AssetPerms.AllowedImport(asset.Type))
return UUID.Zero.ToString();
return string.Empty;
return base.Store(asset);
}