Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
Fix typo in response
Browse files Browse the repository at this point in the history
  • Loading branch information
shalvah committed Dec 19, 2018
1 parent 372e915 commit bf3856a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Expand Up @@ -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}`);
Expand Down

0 comments on commit bf3856a

Please sign in to comment.