File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ export function getMinimalLicensingInfo (): string {
2929 */
3030export function setupLicensingListeners ( client : LanguageClient ) : void {
3131 if ( ! isInitialized ) {
32+ // eslint-disable-next-line @typescript-eslint/no-misused-promises
3233 licensingUrlNotificationListener = client . onNotification ( Notification . LicensingServerUrl , async ( url : string ) => {
3334 const result = await vscode . window . showInformationMessage (
3435 'Sign in required to open MATLAB. Click OK to open your system browser and sign in.' ,
3536 'OK'
36- ) ;
37+ ) ;
3738
38- if ( result === 'OK' ) {
39+ if ( result === 'OK' ) {
3940 void openUrlInExternalBrowser ( url ) ;
40- }
41-
41+ }
4242 } )
4343 licensingDataNotificationListener = client . onNotification ( Notification . LicensingData , ( data : string ) => {
4444 minimalLicensingInfo = data
You can’t perform that action at this time.
0 commit comments