@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.
- package/client/app.bundle.js +4 -1
- package/client/app.bundle.js.map +2 -2
- package/client/components/message-list.js +4 -1
- package/client/components/message-list.js.map +1 -1
- package/client/components/message-list.ts +1 -1
- package/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-38588 → node_modules.npmglobalize-stash-69264}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -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;
|