*Missing await

This commit is contained in:
Derrick Hammer 2023-02-17 16:50:05 -05:00
parent c52e437f50
commit b98db98b6a
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ export class SwarmClient extends Client {
}
async start(): Promise<void> {
this._connectBackoff.run(() => this.init());
await this._connectBackoff.run(() => this.init());
this._connectBackoff.on("retry", (error: any) => {
this.logErr(error);