@bobfrankston/rmfmail 1.1.182 → 1.1.184

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.
@@ -3076,7 +3076,6 @@ async function loadUnifiedInbox(autoSelect = true) {
3076
3076
  if (myGen !== loadGen)
3077
3077
  return;
3078
3078
  totalMessages = result.total;
3079
- logClientEvent("loadUnifiedInbox", { items: result.items?.length ?? 0, total: result.total, hadCache: !!cached, cacheItems: cached?.items?.length ?? 0 });
3080
3079
  listCache.set(CACHE_KEY_UNIFIED, { items: result.items, total: result.total, timestamp: Date.now() });
3081
3080
  if (cached && listResultsEqual(cached.items, result.items))
3082
3081
  return;
@@ -3403,6 +3402,10 @@ function maybeShowFilterEmptyState(body) {
3403
3402
  continue;
3404
3403
  visible++;
3405
3404
  }
3405
+ try {
3406
+ logClientEvent("filterEmptyState", { flaggedOnly, priorityOnly, domRows: rows.length, visible, alreadyShown: !!EXISTING });
3407
+ } catch {
3408
+ }
3406
3409
  if (visible > 0) {
3407
3410
  EXISTING?.remove();
3408
3411
  return;