@bobfrankston/rmfmail 1.2.32 → 1.2.34
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 -0
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +1 -0
- package/client/app.js.map +1 -1
- package/client/app.ts +1 -0
- package/client/components/message-viewer.js +1 -0
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +1 -0
- package/client/lib/mailxapi.js +2 -0
- package/package.json +1 -1
- package/packages/mailx-service/jsonrpc.js +10 -1
- package/packages/mailx-service/jsonrpc.js.map +1 -1
- package/packages/mailx-service/jsonrpc.ts +10 -1
package/client/app.js
CHANGED
|
@@ -2703,6 +2703,7 @@ window.addEventListener("message", (e) => {
|
|
|
2703
2703
|
}
|
|
2704
2704
|
if (e.data?.type === "linkClick" && e.data.url) {
|
|
2705
2705
|
const url = e.data.url;
|
|
2706
|
+
console.log(`[android-link] parent got linkClick → ${url}`);
|
|
2706
2707
|
// Route through mailxapi.openExternal — on desktop it spawns the OS
|
|
2707
2708
|
// browser via the Node process (window.open stayed LOCAL inside msger's
|
|
2708
2709
|
// WebView2 — Bob 2026-06-13 "old bug back"); on Android it uses the
|