@bobfrankston/rmfmail 1.1.34 → 1.1.36
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 +2 -1
- package/client/app.bundle.js.map +2 -2
- package/client/components/message-viewer.js +5 -1
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +5 -1
- package/package.json +3 -3
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-50104 → node_modules.npmglobalize-stash-45456}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -1615,8 +1615,9 @@ async function showMessage(accountId, uid, folderId, specialUse, isRetry = false
|
|
|
1615
1615
|
const emlPath = msg.emlPath || "";
|
|
1616
1616
|
const attCount = msg.attachments?.length || 0;
|
|
1617
1617
|
const flags = Array.isArray(msg.flags) ? msg.flags.join(", ") : "";
|
|
1618
|
+
const appVer = (document.querySelector(".app-version, #app-version, #status-version")?.textContent || "").trim();
|
|
1618
1619
|
bodyEl.innerHTML = `<div class="mv-system-message">
|
|
1619
|
-
<div class="mv-system-tag">mailx</div>
|
|
1620
|
+
<div class="mv-system-tag">mailx${appVer ? " " + escapeHtml(appVer) : ""}</div>
|
|
1620
1621
|
<div class="mv-system-title">Body parsed empty</div>
|
|
1621
1622
|
<div class="mv-system-body" style="white-space:pre-line">${escapeHtml([
|
|
1622
1623
|
`Parser produced 0 bytes for both bodyHtml and bodyText.`,
|