From 34de5be92fefd18bf2c16c56098e3e81ed310e7d Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 18 Sep 2018 13:11:30 -0400 Subject: [PATCH] fixes: #188: `stream` option is lost in any `get` request that is streamable --- src/infrastructure/RequestHelper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/infrastructure/RequestHelper.ts b/src/infrastructure/RequestHelper.ts index 770f4323a..d060ac0a0 100644 --- a/src/infrastructure/RequestHelper.ts +++ b/src/infrastructure/RequestHelper.ts @@ -177,7 +177,7 @@ class RequestHelper { } static get(service, endpoint, options = {}, { stream = false } = {}) { - return RequestHelper.request('get', service, endpoint, options, stream); + return RequestHelper.request('get', service, endpoint, options, false, stream); } static post(service, endpoint, options = {}, form = false) {