From 42832a8c211c48bbb3475c627f7b410714747caf Mon Sep 17 00:00:00 2001 From: sbenmoussati <51402489+sbenmoussati@users.noreply.github.com> Date: Wed, 9 Jun 2021 10:42:27 +0200 Subject: [PATCH] Bug fix --- src/app/chrome-flags.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/chrome-flags.ts b/src/app/chrome-flags.ts index 12b193df..b2a674c3 100644 --- a/src/app/chrome-flags.ts +++ b/src/app/chrome-flags.ts @@ -35,9 +35,8 @@ export const setChromeFlags = () => { ]) as any; const configFlags: object = { 'auth-negotiate-delegate-whitelist': - flagsConfig.customFlags.authServerWhitelist, - 'auth-server-whitelist': flagsConfig.customFlags.authNegotiateDelegateWhitelist, + 'auth-server-whitelist': flagsConfig.customFlags.authServerWhitelist, 'disable-background-timer-throttling': 'true', 'disable-d3d11': flagsConfig.disableGpu || null, 'disable-gpu': flagsConfig.disableGpu || null,