@bobfrankston/rmfmail 1.2.324 → 1.2.325

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 CHANGED
@@ -3691,8 +3691,22 @@ onWsEvent((event) => {
3691
3691
  statusSync.textContent = "";
3692
3692
  }, 8000);
3693
3693
  }
3694
+ // 2026-09-13 17:20 EDT — Claude Code (Fable 5.1), at Bob's direction.
3695
+ // The daemon now reconciles accounts.jsonc itself (new accounts are
3696
+ // added live) and says whether a restart is still needed. The
3697
+ // Restart banner was firing for the daemon's own repair of a
3698
+ // crash-zeroed cache from the cloud copy, seconds after launch.
3694
3699
  if (event.filename && /accounts\.jsonc/i.test(String(event.filename))) {
3695
- showRestartForConfigBanner();
3700
+ if (event.restartNeeded) {
3701
+ showRestartForConfigBanner();
3702
+ }
3703
+ else if (event.detail && statusSync) {
3704
+ statusSync.textContent = String(event.detail);
3705
+ setTimeout(() => {
3706
+ if (statusSync.textContent === String(event.detail))
3707
+ statusSync.textContent = "";
3708
+ }, 8000);
3709
+ }
3696
3710
  }
3697
3711
  break;
3698
3712
  case "cloudError":