Browse Source

fix: correctly parse default_app path on windows (#18086)

Samuel Attard 6 years ago
parent
commit
913bd4c832
1 changed files with 5 additions and 1 deletions
  1. 5 1
      default_app/default_app.ts

+ 5 - 1
default_app/default_app.ts

@@ -30,7 +30,11 @@ function isTrustedSender (webContents: Electron.WebContents) {
   }
 
   const parsedUrl = new URL(webContents.getURL())
-  return parsedUrl.protocol === 'file:' && parsedUrl.pathname === indexPath
+  const urlPath = process.platform === 'win32'
+    // Strip the prefixed "/" that occurs on windows
+    ? path.resolve(parsedUrl.pathname.substr(1))
+    : parsedUrl.pathname
+  return parsedUrl.protocol === 'file:' && urlPath === indexPath
 }
 
 ipcMain.on('bootstrap', (event) => {