diff --git a/index.html b/index.html index a604ebf..71fb48e 100644 --- a/index.html +++ b/index.html @@ -55,7 +55,7 @@

Поддержите нас!

const price = 100000; // Сумма в наименьших единицах // Формируем URL запроса - const requestUrl = https://api.telegram.org/bot${botToken}/sendInvoice?chat_id=${chatId}&title=${encodeURIComponent(title)}&description=${encodeURIComponent(description)}&payload=${payload}¤cy=${currency}&prices=${encodeURIComponent(JSON.stringify([{ "label": "Donation", "amount": price }]))}; + const requestUrl = 'https://api.telegram.org/bot${botToken}/sendInvoice?chat_id=${chatId}&title=${encodeURIComponent(title)}&description=${encodeURIComponent(description)}&payload=${payload}¤cy=${currency}&prices=${encodeURIComponent(JSON.stringify([{ "label": "Donation", "amount": price }]))};' // Открываем URL в новом окне для отправки инвойса window.location.href = requestUrl;