Skip to content

Commit

Permalink
Fix bug #72 (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo authored Jan 6, 2019
1 parent 74196a5 commit a30e594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
leetCodeTreeDataProvider.refresh();
});

leetCodeManager.getLoginStatus();
const leetCodeTreeDataProvider: LeetCodeTreeDataProvider = new LeetCodeTreeDataProvider(context);

context.subscriptions.push(
Expand All @@ -47,6 +46,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
);

await plugin.initializeEndpoint();
leetCodeManager.getLoginStatus();
}

export function deactivate(): void {
Expand Down

0 comments on commit a30e594

Please sign in to comment.