From 73a026572367987fb539852374fe3988cac38f40 Mon Sep 17 00:00:00 2001 From: Jason Dobry Date: Mon, 21 Aug 2017 15:19:27 -0700 Subject: [PATCH] Fixes #333 --- endpoints/getting-started/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/endpoints/getting-started/app.js b/endpoints/getting-started/app.js index cc3ddbd632..4416ec8b32 100644 --- a/endpoints/getting-started/app.js +++ b/endpoints/getting-started/app.js @@ -23,6 +23,7 @@ const Buffer = require('safe-buffer').Buffer; const app = express(); +app.set('case sensitive routing', true); app.use(bodyParser.json()); // [END setup]