We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e9385c commit a2f8e2dCopy full SHA for a2f8e2d
1 file changed
src/deepcode/lib/modules/DeepCodeLib.ts
@@ -16,6 +16,7 @@ export default class DeepCodeLib extends BundlesModule implements DeepCode.DeepC
16
17
public async activateExtensionAnalyzeActions(): Promise<void> {
18
19
+ try{
20
// First, check logged in or not
21
let loggedIn = await this.checkSession();
22
if (!loggedIn) {
@@ -57,5 +58,8 @@ export default class DeepCodeLib extends BundlesModule implements DeepCode.DeepC
57
58
await this.errorHandler.processError(this, err);
59
}
60
61
+ }catch(err) {
62
+ await this.errorHandler.processError(this, err);
63
+ }
64
65
0 commit comments