Skip to content

Commit f0848ec

Browse files
committed
Reverse incorrect error check
1 parent 99b594f commit f0848ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/workspacesProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export class WorkspaceProvider implements vscode.TreeDataProvider<vscode.TreeIte
5858
this.refresh()
5959

6060
// As long as there was no error we can schedule the next refresh.
61-
if (hadError) {
61+
if (!hadError) {
6262
this.maybeScheduleRefresh()
6363
}
6464
}

0 commit comments

Comments
 (0)