From 6a112d18937eeddf90d191cc8463da4f7ea81a54 Mon Sep 17 00:00:00 2001 From: mjcrouch <49367953+mjcrouch@users.noreply.github.com> Date: Fri, 28 Aug 2020 14:25:03 +0100 Subject: [PATCH] Clear list of created groups once they are added This prevents them being re-added again next time fixes #105483 --- src/vs/workbench/api/common/extHostSCM.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/api/common/extHostSCM.ts b/src/vs/workbench/api/common/extHostSCM.ts index 77d142d2bd6..83739e744dd 100644 --- a/src/vs/workbench/api/common/extHostSCM.ts +++ b/src/vs/workbench/api/common/extHostSCM.ts @@ -516,6 +516,7 @@ class ExtHostSourceControl implements vscode.SourceControl { } this._proxy.$registerGroups(this.handle, groups, splices); + this.createdResourceGroups.clear(); } @debounce(100)