Fix quic error wrapper

This commit is contained in:
世界 2023-09-12 13:08:51 +08:00
parent b0849c43a6
commit 1453c7c8c2
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -55,7 +55,7 @@ func WrapQUIC(err error) error {
if err == nil {
return nil
}
if Contains(err, "canceled with error code 0") {
if Contains(err, "canceled by local with error code 0") {
return net.ErrClosed
}
return err