Added config to make add to queue responses for requester only (#1021)

Co-authored-by: Max Isom <codetheweb@users.noreply.github.com>
This commit is contained in:
Sheeley7 2024-04-28 17:11:35 -04:00 committed by GitHub
parent cf775c428c
commit 8e08919206
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 46 additions and 2 deletions

View file

@ -37,9 +37,9 @@ export default class AddQueryToQueue {
const settings = await getGuildSettings(guildId);
const {playlistLimit} = settings;
const {playlistLimit, queueAddResponseEphemeral} = settings;
await interaction.deferReply();
await interaction.deferReply({ephemeral: queueAddResponseEphemeral});
let newSongs: SongMetadata[] = [];
let extraMsg = '';