Skip to content

Commit

Permalink
fix: provide client Lang to lib initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirasaki committed Jan 12, 2024
1 parent 1146cf2 commit f8b3acb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.fixAll.eslint": true,
"source.organizeImports": false
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"eslint.codeActionsOnSave.mode": "all",
"[jsonc]": {
Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const main = async () => {
});

// Let's initialize the library language localization
initializeLocalization(appConfig.debug.localizations);
initializeLocalization(Lang);

// Initialize our cluster if we're using one
if (appConfig.cluster.enabled) client.cluster = new ClusterClient(client);
Expand Down

0 comments on commit f8b3acb

Please sign in to comment.