Skip to content

Commit

Permalink
fix(vscode): suppress UI error notifications if configuration has cha…
Browse files Browse the repository at this point in the history
…nged

#fix #377
  • Loading branch information
d-biehl committed Jan 15, 2025
1 parent e8e792e commit 2f1265a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vscode-client/extension/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ export async function activateAsync(context: vscode.ExtensionContext): Promise<v
}

for (const uri of affectedFolders) {
await languageClientManger.restart(uri);
setTimeout(async () => {
await languageClientManger.restart(uri);
}, 1000);
}
}),
);
Expand Down

0 comments on commit 2f1265a

Please sign in to comment.