Skip to content

Commit

Permalink
fix: client -> this.client
Browse files Browse the repository at this point in the history
  • Loading branch information
Deivu committed Jul 20, 2023
1 parent aecac05 commit 3afc03e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/ShardClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class ShardClient {
}
this.client = new manager.client(clientOptions);
// @ts-expect-error: Override shard client util with indomitable shard client util
this.client.shard = new ShardClientUtil(client, manager);
this.client.shard = new ShardClientUtil(this.client, manager);
this.clusterId = Number(EnvProcessData.clusterId);
}

Expand Down

0 comments on commit 3afc03e

Please sign in to comment.