Skip to content

Commit

Permalink
remove obsolete await
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip-Carneiro-KX committed Apr 23, 2024
1 parent d15c3ab commit 0928e6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/localConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class LocalConnection {
public async connect(
callback: nodeq.AsyncValueCallback<LocalConnection>,
): Promise<void> {
await nodeq.connect(this.options, (err, conn) => {
nodeq.connect(this.options, (err, conn) => {
if (err || !conn) {
ext.serverProvider.reload();

Expand Down

0 comments on commit 0928e6c

Please sign in to comment.