We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following snippet is in serverless-architectures-aws/chapter-3/Listing 3.1 - 3.4 - Transcode Video Lambda/index.js:
serverless-architectures-aws/chapter-3/Listing 3.1 - 3.4 - Transcode Video Lambda/index.js
//the input file may have spaces so replace them with '+' var sourceKey = decodeURIComponent(key.replace(/\+/g, ' '));
However, the code does the opposite of what the comment says. I think the correct version should read as:
var sourceKey = decodeURIComponent(key.replace(/\W/g, '+'));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following snippet is in
serverless-architectures-aws/chapter-3/Listing 3.1 - 3.4 - Transcode Video Lambda/index.js
:However, the code does the opposite of what the comment says. I think the correct version should read as:
The text was updated successfully, but these errors were encountered: