Commit 20992db
authored
Check if options is defined before accessing insecureSkipVerify
The `insecureSkipVerify` property was being accessed on the `options` object without checking if `options` was defined, leading to a TypeError when `options` was undefined.
````bash
Error stack trace:
TypeError: Cannot read properties of undefined (reading 'insecureSkipVerify')
...1 parent 3038a77 commit 20992db
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
0 commit comments