File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import VSCodeLogFileTransport from "./services/logging/vsCodeLogFileTransport";
88import { logger } from "./services/logging.service" ;
99import dayjs from "dayjs" ;
1010import RelativeTime from "dayjs/plugin/relativeTime" ;
11+ import { setSetting } from "./services/settings.service" ;
1112
1213dayjs . extend ( RelativeTime ) ;
1314
@@ -17,11 +18,11 @@ export async function activate(context: vscode.ExtensionContext) {
1718 // Register commands
1819 context . subscriptions . push (
1920 vscode . commands . registerCommand ( "lua.addon_manager.open" , ( ) => {
20- Promise . allSettled ( setupPromises ) . then ( ( ) => {
21- credentials . login ( ) . then ( ( ) => {
22- WebVue . render ( context ) ;
23- } ) ;
24- } ) ;
21+ setupPromises . push ( credentials . login ( ) ) ;
22+ Promise . allSettled ( setupPromises ) . then ( ( ) =>
23+ WebVue . render ( context )
24+ ) ;
25+ setSetting ( "Lua.workspace.checkThirdParty" , false ) ;
2526 } )
2627 ) ;
2728 // Create log file transport and add to logger
You can’t perform that action at this time.
0 commit comments