aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vimperator.dot.link/plugin/scuttle.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/vimperator.dot.link/plugin/scuttle.js b/vimperator.dot.link/plugin/scuttle.js
index 06f160a..e3f24ea 100644
--- a/vimperator.dot.link/plugin/scuttle.js
+++ b/vimperator.dot.link/plugin/scuttle.js
@@ -41,7 +41,7 @@ commands.addUserCommand(['scuttle'], "Save page as a bookmark on Scuttle",
tags = args.string;
}
- url += "&tags=" + encodeURIComponent(tags).replace(/,,/g, ';').replace(/,/g, ' ').replace(/;/g, ', ').replace(/%2C/g, ',');
+ url += "&tags=" + encodeURIComponent(tags).replace(/%2C/g, ',');
var xhr = new XMLHttpRequest();
xhr.open("POST", url, false);
xhr.send(null);