Skip to content

Automatically refresh workspaces #203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Set fetching once
  • Loading branch information
code-asher committed Feb 1, 2024
commit 62e514320d2baa9894923e9f6aac62deffb6ecf5
12 changes: 9 additions & 3 deletions src/workspacesProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,22 @@ export class WorkspaceProvider implements vscode.TreeDataProvider<vscode.TreeIte
// needs to be cleared.
this.cancelPendingRefresh()

let hadError = false
try {
this.workspaces = await this.fetch()
this.fetching = false
this.maybeScheduleRefresh()
} catch (error) {
hadError = true
this.workspaces = []
this.fetching = false
}

this.fetching = false

this.refresh()

// As long as there was no error we can schedule the next refresh.
if (hadError) {
this.maybeScheduleRefresh()
}
}

/**
Expand Down