From c201dc19da574c57446dd956602187e986f683b5 Mon Sep 17 00:00:00 2001 From: Jonathan Vahlsing Date: Sun, 17 May 2020 23:17:45 +0200 Subject: [PATCH] Fix typo breaking insecure option --- src/models/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/base.js b/src/models/base.js index a7ca006..4488564 100755 --- a/src/models/base.js +++ b/src/models/base.js @@ -20,7 +20,7 @@ class base { this._perPage = this.config ? this.config.get('_perPage') : 100; this._parallel = this.config ? this.config.get('_parallel') : 4; this._proxy = this.config && this.config.get('proxy') ? this.config.get('proxy') : undefined; - this._insecure = this.config && this.config.get('unsecure') ? this.config.get('unsecure') : false; + this._insecure = this.config && this.config.get('insecure') ? this.config.get('insecure') : false; } /**