#Failed when joining group using invite link

4 messages · Page 1 of 1 (latest)

gleaming delta
#

Hi guys, i have a problem that my bot cannot join invitation groups.
Is there anything wrong with my code?

Here's my code

const inviteCode = args[0]
    console.log(inviteCode)

try{
    await client.acceptInvite(inviteCode)
    message.reply("Success")
} catch (e) {
    message.reply("Invalid code")
    console.log(e)
}
gleaming delta