From 0b6965c18ea98df07c78f0b29f8182689f46c5e8 Mon Sep 17 00:00:00 2001 From: tyru Date: Thu, 29 Sep 2011 08:42:42 +0900 Subject: direct_bookmark.js: fix delicious tag separator --- direct_bookmark.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'direct_bookmark.js') diff --git a/direct_bookmark.js b/direct_bookmark.js index 80f99af..9b4c35d 100644 --- a/direct_bookmark.js +++ b/direct_bookmark.js @@ -398,7 +398,7 @@ for Migemo search: require XUL/Migemo Extension entryPage:'http://del.icio.us/url/%URL::MD5%', poster:function(user,password,url,title,comment,tags){ var request_url = 'https://api.del.icio.us/v1/posts/add?' + [ - ['url', url], ['description', title], ['extended', comment], ['tags', tags.join(' ')] + ['url', url], ['description', title], ['extended', comment], ['tags', tags.join(',')] ].map(function(p) p[0] + '=' + encodeURIComponent(p[1])).join('&'); return Deferred.http({ method: "get", -- cgit v1.2.3