From d47e58a5d928ae7e700cf0af40441d02fb7b478b Mon Sep 17 00:00:00 2001 From: Zane Starr Date: Wed, 16 Dec 2020 11:06:43 -0800 Subject: [PATCH] fix: rm notification default timeout fixes #231 --- src/Client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.ts b/src/Client.ts index 57618e2..641dfc7 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -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) {