Skip to content

Commit fb68001

Browse files
authored
Merge pull request kriskbx#111 from jofrev/fix-insecure-option
Fix typo breaking insecure option
2 parents e059f1f + c201dc1 commit fb68001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class base {
2020
this._perPage = this.config ? this.config.get('_perPage') : 100;
2121
this._parallel = this.config ? this.config.get('_parallel') : 4;
2222
this._proxy = this.config && this.config.get('proxy') ? this.config.get('proxy') : undefined;
23-
this._insecure = this.config && this.config.get('unsecure') ? this.config.get('unsecure') : false;
23+
this._insecure = this.config && this.config.get('insecure') ? this.config.get('insecure') : false;
2424
}
2525

2626
/**

0 commit comments

Comments
 (0)