Skip to content

Commit

Permalink
Fix a formatting issue (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored Dec 13, 2023
1 parent 80dcef9 commit d912507
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export async function activate(context: ExtensionContext) {

languageClient.onNotification("cfn/cfnLintUpgradeNeeded", (params) => {
window.showInformationMessage(
`You are using an outdated version of cfn-lint (${params["cli_version"]}). The latest version is ${params["latest_version"]}.`
`You are using an outdated version of cfn-lint (${params["cliVersion"]}). The latest version is ${params["latestVersion"]}.`
);
});

Expand Down
4 changes: 2 additions & 2 deletions server/src/server/handlers/notificationHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ export class NotificationHandler {
try {
if (gt(latestVersion, cliVersion)) {
this.connection.sendNotification("cfn/cfnLintUpgradeNeeded", {
cli_version: cliVersion,
latest_version: latestVersion,
cliVersion: cliVersion,
latestVersion: latestVersion,
});
}
} catch (error) {
Expand Down

0 comments on commit d912507

Please sign in to comment.