@bobfrankston/rmfmail 1.2.190 → 1.2.191

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.
@@ -10343,6 +10343,16 @@ onWsEvent((event) => {
10343
10343
  case "connectProgress":
10344
10344
  handleConnectProgress(event);
10345
10345
  break;
10346
+ case "bootstrapStatus": {
10347
+ const msg = String(event.message || "");
10348
+ if (msg) {
10349
+ if (statusSync) statusSync.textContent = msg;
10350
+ if (startupStatus) startupStatus.textContent = msg;
10351
+ const slot = document.querySelector(".folder-loading");
10352
+ if (slot) slot.textContent = msg;
10353
+ }
10354
+ break;
10355
+ }
10346
10356
  case "syncProgress": {
10347
10357
  let label = `${event.phase} ${event.progress || 0}%`;
10348
10358
  if (typeof event.phase === "string" && event.phase.startsWith("folders:")) {