in vscode/qodana/src/core/cloud/link.ts [79:89]
async openReport() {
let projectId = this?.getLinkedProjectId();
if (projectId === undefined || extensionInstance.languageClient === undefined || extensionInstance.auth === undefined || this.context === undefined) {
return;
}
let authorized = extensionInstance.auth.getAuthorized();
if (authorized) {
await openReportByProjectId(projectId, this.context, authorized);
vscode.commands.executeCommand('workbench.action.problems.focus');
}
}