This commit is contained in:
localhost 2024-06-29 11:23:05 +02:00
parent 835ffab7be
commit b83f44240d
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ exports.save = async (ws, req) => {
if (await redis.get(id) != 'downloading') { if (await redis.get(id) != 'downloading') {
await redis.set(id, 'downloading', 'EX', 300) await redis.set(id, 'downloading', 'EX', 300)
const confirm = true//await captcha.checkCaptcha(msg) const confirm = await captcha.checkCaptcha(msg)
if (confirm) startDownloading() if (confirm) startDownloading()
else { else {