We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f78f1a commit 4aa43d0Copy full SHA for 4aa43d0
lib/proxyIntegration.js
@@ -196,7 +196,7 @@ function extractPathNames(pathExpression) {
196
function isLocalExecution(event) {
197
return event.headers
198
&& event.headers.Host
199
- && event.headers.Host.startsWith('localhost') || event.headers.Host.startsWith('127.0.0.1');
+ && (event.headers.Host.startsWith('localhost') || event.headers.Host.startsWith('127.0.0.1'));
200
}
201
202
module.exports = process;
0 commit comments