We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7048944 commit f23bc81Copy full SHA for f23bc81
1 file changed
extensions/ql-vscode/src/databases/github-database-module.ts
@@ -18,6 +18,8 @@ export class GithubDatabaseModule extends DisposableObject {
18
}
19
20
private async initialize(): Promise<void> {
21
+ // Start the check and downloading the database asynchronously. We don't want to block on this
22
+ // in extension activation since this makes network requests and waits for user input.
23
void this.promptGitHubRepositoryDownload().catch((e: unknown) => {
24
const error = redactableError(
25
asError(e),
0 commit comments