From 1c022477140ca20b22bd701a17d199d5cbe726f8 Mon Sep 17 00:00:00 2001 From: fivesevenblue Date: Sat, 18 Jan 2025 14:49:00 +0000 Subject: [PATCH] Fix hardcoded string --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 8fe4737..a6163de 100644 --- a/main.js +++ b/main.js @@ -63,7 +63,7 @@ async function main() { !excludedUsers.includes(user.username) }); - console.log(`Found ${usersToDelete.length} users matching criteria (no posts, not updated, and older than 5 days)`); + console.log(`Found ${usersToDelete.length} users matching criteria (no posts, not updated, and older than ${PERIOD} days)`); console.log('\nUsers to be deleted:'); usersToDelete.forEach(user => {