From f92769db8ca7934799e3aa3d6f55df5e7b3d7323 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Wed, 10 Apr 2019 13:41:22 -0700 Subject: [PATCH] Windows: Return real path, not lowercase path --- app/protocol_filter.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/protocol_filter.js b/app/protocol_filter.js index d1bc9d98d..a065e61c8 100644 --- a/app/protocol_filter.js +++ b/app/protocol_filter.js @@ -31,9 +31,9 @@ function _createFileHandler({ userDataPath, installPath, isWindows }) { // finally we do case-insensitive checks on windows const properCasing = isWindows ? realPath.toLowerCase() : realPath; - if (!path.isAbsolute(properCasing)) { + if (!path.isAbsolute(realPath)) { console.log( - `Warning: denying request to non-absolute path '${properCasing}'` + `Warning: denying request to non-absolute path '${realPath}'` ); return callback(); } @@ -47,13 +47,13 @@ function _createFileHandler({ userDataPath, installPath, isWindows }) { ) ) { console.log( - `Warning: denying request to path '${properCasing}' (userDataPath: '${userDataPath}', installPath: '${installPath}')` + `Warning: denying request to path '${realPath}' (userDataPath: '${userDataPath}', installPath: '${installPath}')` ); return callback(); } return callback({ - path: properCasing, + path: realPath, }); }; }