whoisYeshua / NikeRuAccountGenerator

Генератор аккаунтов для Nike Ru на node.js
9 stars 3 forks source link

Bug #2

Closed ScuffGit closed 3 years ago

ScuffGit commented 3 years ago

Change this please. It doenst pass the correct webhook. I didnt debug but thats what fixed it for me :)

 async function successWebhook() {
        if (webhookUrl) {
            let webhookData = createSuccessWebhookData(mail, pass, 'Аккаунт создан')
            await sendWebhook(webhookUrl, webhookData)
        }
    }

correct:

 async function successWebhook() {
        if (webhookUrl) {
            let webhookData = createSuccessWebhookData(mail, pass, 'Аккаунт создан')
            await sendWebhook(webhookData)
        }
    }
y9san9 commented 3 years ago

+1

whoisYeshua commented 3 years ago

❤️