You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current value for rejectUnauthorized is set in this way:
```javascript
this.rejectUnauthorized = settings.rejectUnauthorized || true;
```
but if in the constructor we pass the value `false` it will resolve in `false || true` which is true.
I've tested this change and it seems to work when using self-signed SSL certificates.
This commit will only include the src file as I don't know if to include the compiled assets.
note: in the issue seantomburke#98@AntonKrutikov suggested this change
```javascript
this.rejectUnauthorized = settings.rejectUnauthorized ?? true;
```
but it will not be transpiled correctly so I used the "old fashion" style and `npm run compile` worked correctly.
sitemapper/src/assets/sitemapper.js
Line 44 in a7de176
This option will be alway
true
Can be like this:
this.rejectUnauthorized = settings.rejectUnauthorized ?? true;
The text was updated successfully, but these errors were encountered: