Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting error message running the contributed command failed

I'm getting the following error after developing an extension.

enter image description here

Repository is found here.

like image 280
Stefan Stranger Avatar asked Jun 14 '26 22:06

Stefan Stranger


1 Answers

Change your registerCommand to use a Fat Arrow, like this:

var psconfeuagenda = vscode.commands.registerCommand('extension.getPSConfEUAgenda', () => loadAgenda(psconfeuuri));

I cloned your repo and tested with this update and it appears to be working just fine :)

enter image description here

like image 173
alefragnani Avatar answered Jun 18 '26 00:06

alefragnani