We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb67cee commit 4c0f673Copy full SHA for 4c0f673
plugin/src/main/java/io/snyk/languageserver/protocolextension/SnykExtendedLanguageClient.java
@@ -436,8 +436,10 @@ public void folderConfig(FolderConfigsParam folderConfigParam) {
436
437
@JsonNotification(value = LsConstants.SNYK_SCAN_SUMMARY)
438
public void updateSummaryPanel(SummaryPanelParams summary) {
439
- openToolView();
440
- this.toolView.updateSummary(summary.getSummary());
+ CompletableFuture.runAsync(() -> {
+ openToolView();
441
+ this.toolView.updateSummary(summary.getSummary());
442
+ });
443
}
444
445
@Override
0 commit comments