From 85e7add566460eb06a67208d137566eb0cfcc410 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Thu, 10 Mar 2022 13:37:48 +0000 Subject: [PATCH] btw take off the extra comma at end.. --- .../CoreModules/Framework/InventoryAccess/HGAssetMapper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Region/CoreModules/Framework/InventoryAccess/HGAssetMapper.cs b/OpenSim/Region/CoreModules/Framework/InventoryAccess/HGAssetMapper.cs index cc6d9a4bde..54918be9f2 100644 --- a/OpenSim/Region/CoreModules/Framework/InventoryAccess/HGAssetMapper.cs +++ b/OpenSim/Region/CoreModules/Framework/InventoryAccess/HGAssetMapper.cs @@ -308,7 +308,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess { if (sb == null) sb = new StringBuilder(512); - i = notFound.Count; + i = notFound.Count - 1; sb.Append("[HG ASSET MAPPER POST]: did not find embedded UUIDs as assets:\n\t"); for (int j = 0; j < notFound.Count; ++j) { @@ -338,7 +338,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess { if (sb == null) sb = new StringBuilder(512); - i = posted.Count; + i = posted.Count - 1; sb.Append("[HG ASSET MAPPER POST]: Posted assets:\n\t"); for (int j = 0; j < posted.Count; ++j) {