From 69cc43e2a389603fbbc11c5406d69a8f6f7f9902 Mon Sep 17 00:00:00 2001 From: Sam Saccone Date: Sun, 1 Apr 2018 11:43:02 -0700 Subject: [PATCH] Remove forced flag setting for uuid. If a user still needs to do this, they can pass this flag as a launch flag option. Fixes #25 --- src/chrome-launcher.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/chrome-launcher.ts b/src/chrome-launcher.ts index 3da02594e..ef0512b4b 100644 --- a/src/chrome-launcher.ts +++ b/src/chrome-launcher.ts @@ -151,10 +151,6 @@ class Launcher { flags = flags.filter(flag => flag !== '--disable-extensions'); } - if (getPlatform() === 'linux') { - flags.push('--disable-setuid-sandbox'); - } - flags.push(...this.chromeFlags); flags.push(this.startingUrl);