Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit c201dc1

Browse files
author
Jonathan Vahlsing
committed
Fix typo breaking insecure option
1 parent e059f1f commit c201dc1

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)