Skip to content
Merged
Changes from all commits
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
5 changes: 3 additions & 2 deletions pinner.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package tls_client
import (
"errors"
"fmt"
"reflect"
"strings"

http "github.com/bogdanfinn/fhttp"
Expand Down Expand Up @@ -53,8 +54,8 @@ func (cp *certificatePinner) init() error {

pinnedHost := certificatePinStorage.Lookup(host)

if pinnedHost != nil {
// another pinner instance already initialized the host. we do not need to pin again
if pinnedHost != nil && reflect.DeepEqual(pinnedHost.Sha256Pins, pinsByHost) {
// another pinner instance with the same Pins already initialized the host. we do not need to pin again
continue
}

Expand Down