mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
Merge pull request #1512 from lucas-clemente/fix-1510
fix incorrect type assertion in h2quic server
This commit is contained in:
commit
5e9ac151db
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ func (s *Server) handleHeaderStream(session streamCreator) {
|
|||
// In this case, the session has already logged the error, so we don't
|
||||
// need to log it again.
|
||||
errorCode := qerr.InternalError
|
||||
if qerr, ok := err.(*qerr.QuicError); !ok {
|
||||
if qerr, ok := err.(*qerr.QuicError); ok {
|
||||
errorCode = qerr.ErrorCode
|
||||
s.logger.Errorf("error handling h2 request: %s", err.Error())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue