From 4b1f12ae04d1ca253b702943802ce019c8e928ea Mon Sep 17 00:00:00 2001 From: Stephen McLaughlin <44235289+Steve-Mcl@users.noreply.github.com> Date: Mon, 25 Aug 2025 14:23:59 +0100 Subject: [PATCH] Fix cacheItemCount to use mtausers length (#1103) --- social/email/61-email.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/social/email/61-email.html b/social/email/61-email.html index 7c67b171..42cccb5f 100644 --- a/social/email/61-email.html +++ b/social/email/61-email.html @@ -507,7 +507,7 @@ // User Management let cacheItemCount = 0; if (node.mtausers && node.mtausers.length > 0) { - cacheItemCount = node.users.length; + cacheItemCount = node.mtausers.length; node.mtausers.forEach(function (element, index, array) { generateUserEntry(element, index); });