@bobfrankston/rmfmail 1.1.180 → 1.1.181

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3288,6 +3288,10 @@ function renderMessages(body, accountId, items) {
3288
3288
  while (tempDiv.firstChild)
3289
3289
  fragment.appendChild(tempDiv.firstChild);
3290
3290
  body.replaceChildren(fragment);
3291
+ try {
3292
+ logClientEvent("renderMessages", { items: items.length, domRows: body.querySelectorAll(".ml-row").length, bodyClass: body.className, bodyChildren: body.childElementCount });
3293
+ } catch {
3294
+ }
3291
3295
  if (focusedRow) {
3292
3296
  const fAcct = focusedRow.accountId;
3293
3297
  const fUid = focusedRow.msg?.uid;