Невозможно прочитать свойство 'catch' для неопределенного и необработанного отклонения обещания - PullRequest
0 голосов
/ 17 апреля 2020

Кто-нибудь знает, как исправить ошибки, потому что idk, я пробовал несколько вещей, но ничего не получалось. Кстати, я новичок.

client.on("guildMemberAdd", member => {
    try {
        member.send(`Hello ${member}, welcome to the PotatoHost Server! 
I want to help you and so my question is: Do you want to buy a server or do you need more informations first? \n
A: I want to buy a server
B: I need more informations first \n
Please react to this message with A or B.`)
        .then(function (message) {
            message.react("?")
            message.react("?")     
            message.awaitReactions((reaction, user) => user.id == message.author.id && (reaction.emoji.name == '?' || reaction.emoji.name == '?'),
                { max: 1}).then(collected => {
                    if (collected.first().emoji.name == '?') {
                        message.send.catch(err => console.log(err))('Ok, so you want to buy a server. Let me recommend you to visit <#699374469977735208>.');
                        client.destroy();
                    }
                    else
                        message.send.catch(err => console.log(err))('Ok, so you need more informations first. Let me recommend you to visit <#699374469977735208>.');
                })
        });
    }catch (err) {
         console.log(err)
    }
})

Ошибки:

(node:26800) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'catch' of undefined
    at C:\Users\nicos\OneDrive\Documents\Discord Bots\PotatoHost Bot\index.js:22:38
    at processTicksAndRejections (internal/process/task_queues.js:97:5)
(node:26800) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:26800) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

1 Ответ

1 голос
/ 17 апреля 2020

Правильный синтаксис :

message.channel.send('MESSAGE').catch(err => console.error(err));
...