From 346bb5759c949bd91436ba98237b9475d1b45058 Mon Sep 17 00:00:00 2001 From: Kishan Date: Wed, 24 Mar 2021 14:02:28 +0530 Subject: [PATCH] Fix in open in browser Debug message threw error and was not opening in the browser --- extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension.js b/extension.js index 1649a75..ab5b3c0 100644 --- a/extension.js +++ b/extension.js @@ -789,7 +789,7 @@ function activate( context ) context.subscriptions.push( vscode.commands.registerCommand( 'gerrit-view.openInBrowser', function( item ) { - debug( node.source.url ); + debug( item.source.url ); vscode.commands.executeCommand( 'vscode.open', vscode.Uri.parse( item.source.url ) ); } ) );