@bobfrankston/rmfmail 1.0.507 → 1.0.512
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.js +12 -0
- package/client/app.js.map +1 -1
- package/client/app.ts +12 -0
- package/client/compose/compose.js +20 -0
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +20 -0
- package/package.json +5 -5
- package/packages/mailx-host/package.json +2 -10
- package/packages/mailx-settings/cloud.d.ts +11 -0
- package/packages/mailx-settings/cloud.d.ts.map +1 -1
- package/packages/mailx-settings/cloud.js +42 -0
- package/packages/mailx-settings/cloud.js.map +1 -1
- package/packages/mailx-settings/cloud.ts +42 -0
- package/packages/mailx-settings/index.d.ts.map +1 -1
- package/packages/mailx-settings/index.js +28 -1
- package/packages/mailx-settings/index.js.map +1 -1
- package/packages/mailx-settings/index.ts +29 -1
- package/packages/mailx-store-web/android-bootstrap.d.ts.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.js +130 -1
- package/packages/mailx-store-web/android-bootstrap.js.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.ts +128 -1
- package/packages/mailx-store-web/db.d.ts +10 -0
- package/packages/mailx-store-web/db.d.ts.map +1 -1
- package/packages/mailx-store-web/db.js +20 -0
- package/packages/mailx-store-web/db.js.map +1 -1
- package/packages/mailx-store-web/db.ts +22 -0
package/client/app.js
CHANGED
|
@@ -1905,6 +1905,18 @@ onWsEvent((event) => {
|
|
|
1905
1905
|
refreshFolderTree();
|
|
1906
1906
|
// Q53: track per-account last-sync timestamp for the status-bar hover.
|
|
1907
1907
|
recordAccountSync(event.accountId);
|
|
1908
|
+
// Reload the currently-displayed folder. folderCountsChanged
|
|
1909
|
+
// already triggers a debounced reload when *new* messages arrive,
|
|
1910
|
+
// but on Android the first sync of an account can produce a
|
|
1911
|
+
// bunch of folderCountsChanged events that get coalesced — and
|
|
1912
|
+
// if the unified inbox is the active view but no individual
|
|
1913
|
+
// folder count changed *during* the debounce window, the
|
|
1914
|
+
// message list never refreshes. The phone stayed on its
|
|
1915
|
+
// "no messages" placeholder while Phase 1/2 sync filled the
|
|
1916
|
+
// DB underneath. Forcing one more reload at sync end is cheap
|
|
1917
|
+
// (a single SQL query) and makes the user-visible state catch
|
|
1918
|
+
// up to the DB.
|
|
1919
|
+
reloadCurrentFolder();
|
|
1908
1920
|
break;
|
|
1909
1921
|
case "folderSynced":
|
|
1910
1922
|
// Per-folder timestamps — drives the tooltip + freshness dot.
|