Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix typo breaking insecure option
  • Loading branch information
Jonathan Vahlsing committed May 17, 2020
commit c201dc19da574c57446dd956602187e986f683b5
2 changes: 1 addition & 1 deletion src/models/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down