diff options
-rw-r--r-- | index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.js b/index.js index 8657372..70b1f89 100644 --- a/index.js +++ b/index.js @@ -80,7 +80,7 @@ var boosted = (function() { })(); function boost(rows) { - rows.filter(x => !boosted.already(x)) + rows.filter(function(x) { return !boosted.already(x); }) .forEach(function(row) { M.post('/statuses/' + row.id + '/reblog', function(err, result) { if (err) { |