diff options
-rw-r--r-- | direct_bookmark.js | 2 |
1 files changed, 1 insertions, 1 deletions
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",
|