From f7faef4d31a2117875ed0dbe4355dd16d666995b Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 22 May 2019 13:41:49 +0200 Subject: [PATCH] WebExtension: Allow spaces in tags. --- browser-plugins/webextension/launch.js | 2 +- browser-plugins/webextension/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/browser-plugins/webextension/launch.js b/browser-plugins/webextension/launch.js index e26f284..c6aad53 100644 --- a/browser-plugins/webextension/launch.js +++ b/browser-plugins/webextension/launch.js @@ -12,7 +12,7 @@ function get_tags() // get tags from text input. let tags = document.getElementById("tags").value; if (tags != "") { - return "-t " + tags + " "; + return "-t '" + tags + "' "; } return ""; } diff --git a/browser-plugins/webextension/manifest.json b/browser-plugins/webextension/manifest.json index c5ba535..21b23ea 100644 --- a/browser-plugins/webextension/manifest.json +++ b/browser-plugins/webextension/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "remwharead", - "version": "0.2.1", + "version": "0.2.2", "description": "Integrates remwharead into your Browser.", "homepage_url": "https://schlomp.space/tastytea/remwharead",