Skip to content

Commit 8112b55

Browse files
committed
Replaced double quotes with single quotes
1 parent 539a2cd commit 8112b55

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/ql-vscode/src/databaseFetcher.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export async function promptImportLgtmDatabase(
109109

110110
export async function retrieveCanonicalRepoName(lgtmUrl: string) {
111111
const givenRepoName = parseLgtmUrl(lgtmUrl);
112-
const response = await checkForFailingResponse(await fetch(`https://api.github.com/repos/${givenRepoName}`), "Failed to locate the repository on github");
112+
const response = await checkForFailingResponse(await fetch(`https://api.github.com/repos/${givenRepoName}`), 'Failed to locate the repository on github');
113113
const repo = await response.json();
114114
if (!repo || !repo.full_name) {
115115
return;
@@ -295,7 +295,7 @@ async function fetchAndUnzip(
295295
step: 1,
296296
});
297297

298-
const response = await checkForFailingResponse(await fetch(databaseUrl), "Error downloading database");
298+
const response = await checkForFailingResponse(await fetch(databaseUrl), 'Error downloading database');
299299
const archiveFileStream = fs.createWriteStream(archivePath);
300300

301301
const contentLength = response.headers.get('content-length');

0 commit comments

Comments
 (0)