From 903f62f548e1678fdeaa0ffdef5be8cf59b07083 Mon Sep 17 00:00:00 2001 From: Stephen McLaughlin <44235289+Steve-Mcl@users.noreply.github.com> Date: Mon, 25 Aug 2025 13:02:16 +0100 Subject: [PATCH] Fix cacheItemCount to use mtausers length --- 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); });