Fix cacheItemCount to use mtausers length

This commit is contained in:
Stephen McLaughlin
2025-08-25 13:02:16 +01:00
committed by GitHub
parent 853e88ba24
commit 903f62f548

View File

@@ -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);
});