Skip to content

Commit

Permalink
Update extensions/ql-vscode/src/databaseFetcher.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Eisenberg <[email protected]>
  • Loading branch information
mgsium and aeisenberg committed Oct 19, 2021
1 parent a75278e commit feec0e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/ql-vscode/src/databaseFetcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ function extractProjectSlug(lgtmUrl: string): string | undefined {
if (!match) {
return;
}
return match[2];
return match[1];
}

// exported for testing
Expand Down

0 comments on commit feec0e8

Please sign in to comment.