From 9e0433fc56601ab5fa658e1fd18c9ec2182459a4 Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Mon, 7 Feb 2022 08:47:54 -0600 Subject: [PATCH] fix lint Signed-off-by: Sam Therapy --- lib/convert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/convert.js b/lib/convert.js index a3ebd84..61cf1c1 100644 --- a/lib/convert.js +++ b/lib/convert.js @@ -144,7 +144,7 @@ async function itemsForFeed(opts,user,feed) { // inject in-place into items let index = -1; - for (let i = 0; i < items.length; i ++){ + for (var i = 0; i < items.length; i ++){ if (items[i].object == boostToot.id){ index = i; break;