Skip to content

Commit

Permalink
Merge pull request #4305 from keybase/fix-domainValidLower
Browse files Browse the repository at this point in the history
Fix Web Proof: Remove ToLower()
  • Loading branch information
mlsteele authored Sep 16, 2016
2 parents 1411c49 + 6c19e00 commit b62d769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/externals/proof_support_web.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (rc *WebChecker) CheckHint(ctx libkb.ProofContext, h libkb.SigHint) libkb.P

files := webKeybaseFiles
urlBase := rc.proof.ToDisplayString()
theirURL := strings.ToLower(h.GetAPIURL())
theirURL := h.GetAPIURL()

for _, file := range files {
ourURL := urlBase + "/" + file
Expand Down

0 comments on commit b62d769

Please sign in to comment.