Xray-core/common/singbridge/error.go

11 lines
173 B
Go
Raw Normal View History

2023-04-23 11:31:41 +00:00
package singbridge
import E "github.com/sagernet/sing/common/exceptions"
func ReturnError(err error) error {
if E.IsClosedOrCanceled(err) {
return nil
}
return err
}