mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
http3: fix errors.Is for the Error (#4877)
This commit is contained in:
parent
155f8a3725
commit
a2dccf54ca
1 changed files with 5 additions and 0 deletions
|
@ -33,6 +33,11 @@ func (e *Error) Error() string {
|
|||
return s
|
||||
}
|
||||
|
||||
func (e *Error) Is(target error) bool {
|
||||
t, ok := target.(*Error)
|
||||
return ok && e.ErrorCode == t.ErrorCode && e.Remote == t.Remote
|
||||
}
|
||||
|
||||
func maybeReplaceError(err error) error {
|
||||
if err == nil {
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue