Skip to content

Commit

Permalink
fixed incorrect bool value (#105)
Browse files Browse the repository at this point in the history
Co-authored-by: sigmahour <localhost>
  • Loading branch information
sigmahour authored Dec 20, 2023
1 parent d882304 commit de746fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion immich/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func NewImmichClient(endPoint string, key string, sslVerify bool) (*ImmichClient

// Create a custom HTTP client with SSL verification disabled
transportOptions := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: !sslVerify},
TLSClientConfig: &tls.Config{InsecureSkipVerify: sslVerify},
}
tlsClient := &http.Client{Transport: transportOptions}

Expand Down

0 comments on commit de746fb

Please sign in to comment.