From 156e2ec79e05f736df7370fa78f16c050e4d3047 Mon Sep 17 00:00:00 2001 From: PawzyTheJawzy Date: Thu, 9 Jan 2025 02:06:41 +0100 Subject: [PATCH] Update main.js --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 4ff49fa..341f8a4 100644 --- a/main.js +++ b/main.js @@ -56,7 +56,7 @@ async function main() { const usersToDelete = users.filter(user => { const createdAt = new Date(user.createdAt); const updatedAt = new Date(user.updatedAt); - const excludedUsers = ['instance.actor', 'relay.actor'] + const excludedUsers = ['instance.actor', 'relay.actor']; return user.notesCount === 0 && createdAt < fiveDaysAgo && updatedAt < fiveDaysAgo &&