@bobfrankston/rmfmail 1.2.114 → 1.2.115
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 -0
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +8 -0
- package/client/app.js.map +1 -1
- package/client/compose/compose.bundle.js +7 -2
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/compose.js +16 -5
- package/client/compose/compose.js.map +1 -1
- package/package.json +5 -5
package/client/app.bundle.js
CHANGED
|
@@ -8126,6 +8126,10 @@ function handleConnectProgress(event) {
|
|
|
8126
8126
|
function renderConnectTick() {
|
|
8127
8127
|
const el = document.getElementById("status-sync");
|
|
8128
8128
|
if (!el || activeConnects.size === 0) return;
|
|
8129
|
+
const now = Date.now();
|
|
8130
|
+
for (const [k, c] of activeConnects) {
|
|
8131
|
+
if (now - c.startedAt > 6e5) activeConnects.delete(k);
|
|
8132
|
+
}
|
|
8129
8133
|
let worst = null;
|
|
8130
8134
|
for (const c of activeConnects.values()) {
|
|
8131
8135
|
if (!worst || c.startedAt < worst.startedAt) worst = c;
|