From 2d767fa652a97837edbcd1ee8ce2f5fc3fc2c063 Mon Sep 17 00:00:00 2001 From: Simeon Vincent Date: Wed, 17 Jul 2024 12:29:06 -0700 Subject: [PATCH] Add doc link for additional help --- native-messaging/add-on/background.js | 1 + 1 file changed, 1 insertion(+) diff --git a/native-messaging/add-on/background.js b/native-messaging/add-on/background.js index d1e07dc..f4c9b09 100644 --- a/native-messaging/add-on/background.js +++ b/native-messaging/add-on/background.js @@ -20,6 +20,7 @@ port.onDisconnect.addListener((port) => { // The port closed for an unspecified reason. If this occurred right after // calling `browser.runtime.connectNative()` there may have been a problem // starting the the native messaging client in the first place. + // https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Native_messaging#troubleshooting console.log(`Disconnected`, port); } });