Skip to content

Commit

Permalink
Add missing space in bulk delete log message (fix #609)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianVennen committed Jan 6, 2025
1 parent ae5ea4f commit fb316ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/events/discord/MessageDeleteBulkEventListener.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default class MessageDeleteBulkEventListener extends EventListener {

let data = `${userMention(message.author.id)} (${message.id})`;
if (attachmentCount) {
data += `${attachmentCount} file${attachmentCount === 1 ? '' : 's'}`;
data += ` ${attachmentCount} file${attachmentCount === 1 ? '' : 's'}`;
}
if (content) {
data += `: ${content}\n`;
Expand All @@ -60,4 +60,4 @@ export default class MessageDeleteBulkEventListener extends EventListener {
files: attachments.slice(0, MESSAGE_FILE_LIMIT)
});
}
}
}

0 comments on commit fb316ba

Please sign in to comment.