Fix hardcoded string

This commit is contained in:
fivesevenblue 2025-01-18 14:49:00 +00:00
parent 4d4ad94bcc
commit 1c02247714
Signed by: fsb
GPG key ID: A249DDC8F055E901

View file

@ -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 => {