Merge pull request #191 from rfxct/fix/modal.reply-throwing-error
fix(Modal.reply): Remove exclamation mark
This commit is contained in:
commit
5de442cfcf
@ -152,8 +152,7 @@ class Modal {
|
|||||||
* })
|
* })
|
||||||
*/
|
*/
|
||||||
async reply(guildId, channelId, ...data) {
|
async reply(guildId, channelId, ...data) {
|
||||||
// Test
|
if (!this.application) throw new Error('Modal cannot reply (Missing Application)');
|
||||||
if (this.application) throw new Error('Modal cannot reply (Missing Application)');
|
|
||||||
const guild = this.client.guilds.cache.get(guildId);
|
const guild = this.client.guilds.cache.get(guildId);
|
||||||
if (!guild) throw new Error('GUILD_NOT_FOUND', `Guild ${guildId} not found`);
|
if (!guild) throw new Error('GUILD_NOT_FOUND', `Guild ${guildId} not found`);
|
||||||
const channel = guild.channels.cache.get(channelId);
|
const channel = guild.channels.cache.get(channelId);
|
||||||
|
Loading…
Reference in New Issue
Block a user