Skip to content

Commit

Permalink
Chore: Allow MS Edge for real-browser monitor (#3941)
Browse files Browse the repository at this point in the history
  • Loading branch information
chakflying authored Oct 27, 2023
1 parent 87b2e45 commit 9379498
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions server/monitor-types/real-browser-monitor-type.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ if (process.platform === "win32") {
allowedList.push(process.env.PROGRAMFILES + "\\Chromium\\Application\\chrome.exe");
allowedList.push(process.env["ProgramFiles(x86)"] + "\\Chromium\\Application\\chrome.exe");

// Allow MS Edge
allowedList.push(process.env["ProgramFiles(x86)"] + "\\Microsoft\\Edge\\Application\\msedge.exe");

// For Loop A to Z
for (let i = 65; i <= 90; i++) {
let drive = String.fromCharCode(i);
Expand Down

0 comments on commit 9379498

Please sign in to comment.