Skip to content

Commit

Permalink
Fix optional parameter in call to 'connect'
Browse files Browse the repository at this point in the history
  • Loading branch information
chrjorgensen committed Apr 11, 2023
1 parent fb6adfb commit dc67986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webviews/login/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export class Login {
}

try {
const connected = await new IBMi().connect(connectionConfig, reloadServerSettings);
const connected = await new IBMi().connect(connectionConfig, undefined, reloadServerSettings);
if (connected.success) {
vscode.window.showInformationMessage(`Connected to ${connectionConfig.host}!`);
} else {
Expand Down

0 comments on commit dc67986

Please sign in to comment.