Skip to content

Commit

Permalink
Merge pull request #210 from cviecco/adding-new-firefox-versions-supp…
Browse files Browse the repository at this point in the history
…ort-u2f

now for firefox 70
  • Loading branch information
rkiyanchuk authored Aug 30, 2019
2 parents 4d213a8 + a63282b commit c327033
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ endif
BINARY=keymaster

# These are the values we want to pass for Version and BuildTime
VERSION=1.6.0
VERSION=1.6.2
#BUILD_TIME=`date +%FT%T%z`

# Setup the -ldflags option for go build here, interpolate the variable values
Expand Down
4 changes: 3 additions & 1 deletion cmd/keymasterd/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,9 @@ func browserSupportsU2F(r *http.Request) bool {
if strings.Contains(r.UserAgent(), "Firefox/57") ||
strings.Contains(r.UserAgent(), "Firefox/58") ||
strings.Contains(r.UserAgent(), "Firefox/59") ||
strings.Contains(r.UserAgent(), "Firefox/6") {
strings.Contains(r.UserAgent(), "Firefox/6") ||
strings.Contains(r.UserAgent(), "Firefox/7") ||
strings.Contains(r.UserAgent(), "Firefox/8") {
return true
}
return false
Expand Down
4 changes: 2 additions & 2 deletions keymaster.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Name: keymaster
Version: 1.6.0
Release: 3%{?dist}
Version: 1.6.2
Release: 1%{?dist}
Summary: Short term access certificate generator and client

#Group:
Expand Down

0 comments on commit c327033

Please sign in to comment.