Skip to content

Commit

Permalink
fix: rm notification default timeout
Browse files Browse the repository at this point in the history
fixes #231
  • Loading branch information
zcstarr committed Dec 16, 2020
1 parent 7c7c34d commit d47e58a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class Client implements IClient {
if (this.requestManager.connectPromise) {
await this.requestManager.connectPromise;
}
return this.requestManager.request(requestObject, true);
return this.requestManager.request(requestObject, true, undefined);
}

public onNotification(callback: (data: IJSONRPCNotification) => void) {
Expand Down

0 comments on commit d47e58a

Please sign in to comment.