From 96427fac99f25c669278b3dba84f0acac3425060 Mon Sep 17 00:00:00 2001 From: Blake Johnson Date: Thu, 18 Feb 2021 16:08:50 -0600 Subject: [PATCH] change when you initialize the requestwrapper to pass along the restInverseOptions to getBaseUrl currently the ability to pass your own baseUrl is not working --- src/inverse-client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inverse-client.ts b/src/inverse-client.ts index 405c4b1..30f3ab9 100644 --- a/src/inverse-client.ts +++ b/src/inverse-client.ts @@ -26,7 +26,7 @@ export class InverseClient extends SharedEndpoints { this.requestWrapper = new RequestWrapper( key, secret, - getRestBaseUrl(useLivenet), + getRestBaseUrl(useLivenet, restInverseOptions), restInverseOptions, requestOptions );