diff --git a/src/utils.js b/src/utils.js index ed57a4c..43af2b9 100644 --- a/src/utils.js +++ b/src/utils.js @@ -77,7 +77,7 @@ const finish = (cb, cache = null) => { const randomSuccessResponse = (username) => { let responses = [ `Yay, video! Check for your download link at {link}. I may not always reply to you, so just bookmark this link and check it whenever you make a new download request. Got questions? See ${process.env.EXTERNAL_URL}/faq.🤗`, - `Your video is ready! Your download link: {link}. I may not always reply to you, so check that link whenever you make a new download request. Check out ${process.env.EXTERNAL_URL}/faq} if you've got any questions.🤗`, + `Your video is ready! Your download link: {link}. I may not always reply to you, so check that link whenever you make a new download request. Check out ${process.env.EXTERNAL_URL}/faq if you've got any questions.🤗`, ]; let response = responses[Math.floor(Math.random() * responses.length)]; return response.replace('{link}', `http://${process.env.EXTERNAL_URL}/${username}`);