From 9a31e3703c90584653fdf198ea747f962e87dbe0 Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Sun, 9 Feb 2020 21:50:53 -0800 Subject: [PATCH] make sure sendToProxy get the textResponse option from submit_challenge, improve logging --- js/modules/loki_app_dot_net_api.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/modules/loki_app_dot_net_api.js b/js/modules/loki_app_dot_net_api.js index b450d3d4b..fab433da6 100644 --- a/js/modules/loki_app_dot_net_api.js +++ b/js/modules/loki_app_dot_net_api.js @@ -357,7 +357,8 @@ class LokiAppDotNetServerAPI { const endpoint = urlStr.replace(`${this.baseServerUrl}/`, ''); const { response, result } = await this._sendToProxy( endpoint, - finalOptions + finalOptions, + options ); // emulate nodeFetch response... return { @@ -486,7 +487,7 @@ class LokiAppDotNetServerAPI { try { response = options.textResponse ? respStr : JSON.parse(respStr); } catch (e) { - log.warn(`_sendToProxy Could not parse inner JSON [${respStr}]`); + log.warn(`_sendToProxy Could not parse inner JSON [${respStr}]`, endpoint); } } else { log.warn(