From f14910fa8e1520b39d88d62977c38b9ac6530be4 Mon Sep 17 00:00:00 2001 From: Fabian Becker Date: Tue, 16 Feb 2016 19:28:43 +0100 Subject: [PATCH] Use req.path instead of req.url to check for file extension fixes #6516 --- core/server/middleware/static-theme.js | 2 +- core/test/unit/middleware/static-theme_spec.js | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/server/middleware/static-theme.js b/core/server/middleware/static-theme.js index bfa3a06959..e48fe3dad3 100644 --- a/core/server/middleware/static-theme.js +++ b/core/server/middleware/static-theme.js @@ -23,7 +23,7 @@ function forwardToExpressStatic(req, res, next) { function staticTheme() { return function blackListStatic(req, res, next) { - if (isBlackListedFileType(req.url)) { + if (isBlackListedFileType(req.path)) { return next(); } return forwardToExpressStatic(req, res, next); diff --git a/core/test/unit/middleware/static-theme_spec.js b/core/test/unit/middleware/static-theme_spec.js index 52b2a00733..1957c9a244 100644 --- a/core/test/unit/middleware/static-theme_spec.js +++ b/core/test/unit/middleware/static-theme_spec.js @@ -17,7 +17,7 @@ describe('staticTheme', function () { it('should call next if hbs file type', function () { var req = { - url: 'mytemplate.hbs' + path: 'mytemplate.hbs' }; staticTheme(null)(req, null, next); @@ -26,7 +26,7 @@ describe('staticTheme', function () { it('should call next if md file type', function () { var req = { - url: 'README.md' + path: 'README.md' }; staticTheme(null)(req, null, next); @@ -35,7 +35,7 @@ describe('staticTheme', function () { it('should call next if json file type', function () { var req = { - url: 'sample.json' + path: 'sample.json' }; staticTheme(null)(req, null, next); @@ -44,7 +44,7 @@ describe('staticTheme', function () { it('should call express.static if valid file type', function (done) { var req = { - url: 'myvalidfile.css', + path: 'myvalidfile.css', app: { get: function () { return 'casper'; } } @@ -68,7 +68,7 @@ describe('staticTheme', function () { it('should not error if active theme is missing', function (done) { var req = { - url: 'myvalidfile.css', + path: 'myvalidfile.css', app: { get: function () { return undefined; } }