From a6103e8faaf94a5e52b9ea2a38e9ae5bfbdc7adb Mon Sep 17 00:00:00 2001 From: Rachel Macfarlane Date: Wed, 26 Aug 2020 15:20:34 -0700 Subject: [PATCH] Fix Buffer reference in browser for ms auth --- extensions/microsoft-authentication/src/AADHelper.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/extensions/microsoft-authentication/src/AADHelper.ts b/extensions/microsoft-authentication/src/AADHelper.ts index 035c5af7350..67b55889c3c 100644 --- a/extensions/microsoft-authentication/src/AADHelper.ts +++ b/extensions/microsoft-authentication/src/AADHelper.ts @@ -5,6 +5,7 @@ import * as randomBytes from 'randombytes'; import * as querystring from 'querystring'; +import { Buffer } from 'buffer'; import * as vscode from 'vscode'; import { createServer, startServer } from './authServer'; -- GitLab