diff options
author | myk bilokonsky <mbilokonsky@gmail.com> | 2017-04-10 03:23:45 +0200 |
---|---|---|
committer | myk bilokonsky <mbilokonsky@gmail.com> | 2017-04-10 03:23:45 +0200 |
commit | afd75a7e43daca7078b4892cecf3d48db7f8ee15 (patch) | |
tree | 966f09340c0d01b90a8a1f36406fcced79fba390 | |
parent | 98e1aef9d8185ac0b06ecdaab070c9693d48c988 (diff) |
fixed typo
-rw-r--r-- | index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.js b/index.js index b53ef73..582f179 100644 --- a/index.js +++ b/index.js @@ -59,7 +59,7 @@ function boost(rows) { return !boosted[id]; }) .forEach(function(id) { - M.post('statuses/' + id + '/reblog', function(err, result) { + M.post('/statuses/' + id + '/reblog', function(err, result) { if (err) { if (err.message === 'Validation failed: Reblog of status already exists') { boosted[id] = true; |