Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #197 from microsoft/fixWebViewPipePermission
Browse files Browse the repository at this point in the history
fix: Allow webview to attach to pipe when launched unelevated
  • Loading branch information
EricCornelson committed Oct 1, 2020
2 parents 135f351 + 6ebffa4 commit b44ea3d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/edgeChromiumDebugAdapter.ts
Expand Up @@ -249,7 +249,11 @@ export class EdgeChromiumDebugAdapter extends ChromeDebugAdapter {
});

// Start listening for new webviews
this._webviewPipeServer.listen(serverName);
this._webviewPipeServer.listen({
path: serverName,
readableAll: true,
writableAll: true
});

return pipeName;
}
Expand Down

0 comments on commit b44ea3d

Please sign in to comment.