WebExtension: Allow spaces in tags.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2019-05-22 13:41:49 +02:00
parent e81ab358cd
commit f7faef4d31
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 2 additions and 2 deletions

View File

@ -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 "";
}

View File

@ -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",