mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Improve task
This commit is contained in:
parent
afbe231237
commit
d9ca259bec
4 changed files with 128 additions and 152 deletions
|
@ -13,7 +13,7 @@ type multiError struct {
|
|||
}
|
||||
|
||||
func (e *multiError) Error() string {
|
||||
return "multi error: (" + strings.Join(F.MapToString(e.errors), " | ") + ")"
|
||||
return strings.Join(F.MapToString(e.errors), " | ")
|
||||
}
|
||||
|
||||
func (e *multiError) UnwrapMulti() []error {
|
||||
|
@ -50,7 +50,7 @@ func Append(err error, other error, block func(error) error) error {
|
|||
if other == nil {
|
||||
return err
|
||||
}
|
||||
return Errors(err, block(err))
|
||||
return Errors(err, block(other))
|
||||
}
|
||||
|
||||
func IsMulti(err error, targetList ...error) bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue