From e81ab358cd5d4fc0cd2b65e55956c73b012b7588 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 22 May 2019 13:41:10 +0200 Subject: [PATCH] WebExtension: Remove error message from popup on launch. --- browser-plugins/webextension/launch.js | 1 + 1 file changed, 1 insertion(+) diff --git a/browser-plugins/webextension/launch.js b/browser-plugins/webextension/launch.js index 606c5c5..e26f284 100644 --- a/browser-plugins/webextension/launch.js +++ b/browser-plugins/webextension/launch.js @@ -41,6 +41,7 @@ function onError(error) { function launch() // Launch wrapper and send tags + URL to stdin. { document.getElementById("status").textContent = "Launching remwharead…"; + document.getElementById("error").textContent = ""; var arguments = get_tags() + taburl; console.log("Sending: " + arguments + " to remwharead"); var sending = browser.runtime.sendNativeMessage("remwharead", arguments);