From 986e841730acbe9c68bbe9ae57794e81c79ef5af Mon Sep 17 00:00:00 2001 From: Joe-houghton Date: Fri, 18 Nov 2016 21:14:00 +0000 Subject: [PATCH] Errors connecting to Hive api strictSSL set to false as suggested by nosdod here: https://github.com/aklambeth/bg-hive-api/issues/5#issuecomment-255852463 --- Connection.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Connection.js b/Connection.js index 55ebd65..81c1c94 100644 --- a/Connection.js +++ b/Connection.js @@ -44,7 +44,8 @@ module.exports.command = async.queue(function (task, callback) { jar:module.exports.context.authToken, form: undefined, method: undefined, - qs:undefined + qs:undefined, + strictSSL:false }; if (typeof task == 'object') { @@ -64,4 +65,4 @@ module.exports.command = async.queue(function (task, callback) { }); -}, 2); \ No newline at end of file +}, 2);