Skip to content

Commit 180b84b

Browse files
Use correct variable name
1 parent c84c69f commit 180b84b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/ql-vscode/src/vscode-utils/external-files.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { redactableError } from "../pure/errors";
88
import { asError, getErrorMessage, getErrorStack } from "../pure/helpers-pure";
99

1010
export async function tryOpenExternalFile(
11-
CommandManager: AppCommandManager,
11+
commandManager: AppCommandManager,
1212
fileLocation: string,
1313
) {
1414
const uri = Uri.file(fileLocation);
@@ -29,7 +29,7 @@ the file in the file explorer and dragging it into the workspace.`,
2929
);
3030
if (res) {
3131
try {
32-
await CommandManager.execute("revealFileInOS", uri);
32+
await commandManager.execute("revealFileInOS", uri);
3333
} catch (e) {
3434
void showAndLogExceptionWithTelemetry(
3535
redactableError(

0 commit comments

Comments
 (0)