Merge pull request 'Fixing issue where woomy would endlessly type from an api error' (#2) from ItzRock/woomy:master into master

Reviewed-on: #2
This commit is contained in:
Emily 2022-12-17 10:30:00 +00:00
commit 4241d54efd
1 changed files with 1 additions and 0 deletions

View File

@ -44,6 +44,7 @@ exports.run = async (client, message, args, error) => {
message.channel.send(embed)
});
} catch(err) {
message.channel.stopTyping(); // Previously wasnt here causing an issue where woomy would endlessly type.
return message.channel.send(`<:error:466995152976871434> API error: \`${err}\``)
};
};