We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, i had a problem with the info command posting just empty string to discord. Maybe related to changes in discord API?
Anyway i changed this code:
msg.channel.send({embeds: [{description: string}] })
To just send the string and now it works. For some reason with the original 2.0.1 code it sent empty string after the error catching.
msg.channel.send(string);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, i had a problem with the info command posting just empty string to discord. Maybe related to changes in discord API?
Anyway i changed this code:
msg.channel.send({embeds: [{description: string}] })
To just send the string and now it works. For some reason with the original 2.0.1 code it sent empty string after the error catching.
msg.channel.send(string);
The text was updated successfully, but these errors were encountered: