Some smol fixes

This commit is contained in:
zneix 2021-03-23 11:15:06 +01:00
parent 56bb0d47a2
commit 2175e626bc
No known key found for this signature in database
GPG Key ID: 911916E0523B22F6
1 changed files with 4 additions and 2 deletions

View File

@ -52,6 +52,8 @@ const runList = async (listData, listID, channel) => {
banChunks.push(banArr.splice(0, Config.MaxChunkSize)); banChunks.push(banArr.splice(0, Config.MaxChunkSize));
} }
const chunkCount = banChunks.length;
for (const [i, chunk] of banChunks.entries()) { for (const [i, chunk] of banChunks.entries()) {
const promises = []; const promises = [];
@ -69,7 +71,7 @@ const runList = async (listData, listID, channel) => {
break; break;
} }
say(Config.Username, `Chunk ${Number(i) + 1} of ${listID} executed successfully on channel ${channel}`); say(Config.Username, `Chunk ${Number(i) + 1}/${chunkCount} of ${listID} executed successfully on channel ${channel}`);
await sleep(Config.DelayPerChunk); await sleep(Config.DelayPerChunk);
} }
} else { } else {
@ -144,7 +146,7 @@ pnslWebSocket.on('message', async (data) => {
clients[i].on('error', (error) => { clients[i].on('error', (error) => {
if (error instanceof SayError) return; if (error instanceof SayError) return;
if (error instanceof UserBanError) { if (error instanceof UserBanError) {
return console.warn(`Failed to ban user ${error.username} from ${error.channelname}`); return console.warn(`Failed to ban user ${error.username} from ${error.channelName}`);
} }
if (error instanceof ConnectionError) { if (error instanceof ConnectionError) {
if (clients[i].ready) { if (clients[i].ready) {