Skip to content

Commit

Permalink
Fix issue with notify command logging not listing channels
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumManiac committed Feb 16, 2024
1 parent efe55c4 commit 7a8d212
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/listeners/commands/notifyCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ export default async function notifyCommandHandler({
return;
}

const responseMessage = `Notified channels ${channels
const responseMessage = `Notified channels ${channelSet
.values()
.map((c) => `\`${c.name}\``)
.join(", ")} about message \`${messageUrl}\``;

Expand Down

0 comments on commit 7a8d212

Please sign in to comment.