send DMs for savegif, reduce spam

This commit is contained in:
= 2021-07-18 21:17:38 -04:00
parent 1113541fdb
commit 7b95f4b0ab
1 changed files with 3 additions and 2 deletions

View File

@ -13,9 +13,9 @@ module.exports = {
description: 'Adds a given gif to the hardcoded list.',
usage: '<search query>',
execute(message, file) {
const channel = message.channel;
const query = file.name;
tenor.Search.Query(query, 20)
message.author.createDM().then(channel => {
tenor.Search.Query(query, 20)
.then(res => {
if (res[0] == undefined) {
channel.send('Sorry, I wasn\'t able to find a GIF of ' + file.name);
@ -92,5 +92,6 @@ module.exports = {
}).catch(err => console.error(err));
})
.catch(err => console.error(err));
})
}
}