forked from Leafus/misskey-gooner-remover
Fix hardcoded string
This commit is contained in:
parent
4d4ad94bcc
commit
1c02247714
1 changed files with 1 additions and 1 deletions
2
main.js
2
main.js
|
@ -63,7 +63,7 @@ async function main() {
|
||||||
!excludedUsers.includes(user.username)
|
!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:');
|
console.log('\nUsers to be deleted:');
|
||||||
usersToDelete.forEach(user => {
|
usersToDelete.forEach(user => {
|
||||||
|
|
Loading…
Reference in a new issue