Skip to content

Commit

Permalink
support http3 in go1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
imroc committed Aug 21, 2022
1 parent 548f200 commit 13a8efc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ func (t *Transport) EnableHTTP3() {
}
return
}
if !(minorVersion >= 16 && minorVersion <= 18) {
if !(minorVersion >= 16 && minorVersion <= 19) {
if t.Debugf != nil {
t.Debugf("%s is not support http3", v)
}
Expand Down

0 comments on commit 13a8efc

Please sign in to comment.