add some headers to llemail emails; cosmetics

This commit is contained in:
UbitUmarov
2022-03-22 03:09:34 +00:00
parent aba0269fe2
commit e6059a7ca1
4 changed files with 44 additions and 24 deletions

View File

@@ -35,10 +35,10 @@ namespace OpenSim.Framework
[Serializable]
public class WearableCacheItem
{
public uint TextureIndex { get; set; }
public UUID CacheId { get; set; }
public UUID TextureID { get; set; }
public AssetBase TextureAsset { get; set; }
public uint TextureIndex;
public UUID CacheId;
public UUID TextureID;
public AssetBase TextureAsset;
public static WearableCacheItem[] GetDefaultCacheItem()
@@ -186,7 +186,7 @@ namespace OpenSim.Framework
{
for (int i = 0; i < pcacheItems.Length; i++)
{
if (pcacheItems[i].CacheId == pCacheId)
if (pcacheItems[i].CacheId.Equals(pCacheId))
return pcacheItems[i];
}
return null;
@@ -195,7 +195,7 @@ namespace OpenSim.Framework
{
for (int i = 0; i < pcacheItems.Length; i++)
{
if (pcacheItems[i].TextureID == pTextureId)
if (pcacheItems[i].TextureID.Equals(pTextureId))
return pcacheItems[i];
}
return null;