File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
server/src/server/handlers Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ export async function activate(context: ExtensionContext) {
108108
109109 languageClient . onNotification ( "cfn/cfnLintUpgradeNeeded" , ( params ) => {
110110 window . showInformationMessage (
111- `You are using an outdated version of cfn-lint (${ params [ "cli_version " ] } ). The latest version is ${ params [ "latest_version " ] } .`
111+ `You are using an outdated version of cfn-lint (${ params [ "cliVersion " ] } ). The latest version is ${ params [ "latestVersion " ] } .`
112112 ) ;
113113 } ) ;
114114
Original file line number Diff line number Diff line change @@ -73,8 +73,8 @@ export class NotificationHandler {
7373 try {
7474 if ( gt ( latestVersion , cliVersion ) ) {
7575 this . connection . sendNotification ( "cfn/cfnLintUpgradeNeeded" , {
76- cli_version : cliVersion ,
77- latest_version : latestVersion ,
76+ cliVersion : cliVersion ,
77+ latestVersion : latestVersion ,
7878 } ) ;
7979 }
8080 } catch ( error ) {
You can’t perform that action at this time.
0 commit comments