From afd75a7e43daca7078b4892cecf3d48db7f8ee15 Mon Sep 17 00:00:00 2001 From: myk bilokonsky Date: Mon, 10 Apr 2017 03:23:45 +0200 Subject: fixed typo --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit