1
0
mirror of https://github.com/kataras/iris.git synced 2026-03-06 00:16:12 +00:00

go1.19: core/errgroup minor fix

This commit is contained in:
Gerasimos (Makis) Maropoulos
2022-08-15 01:23:41 +03:00
parent 057fa462f4
commit 0d86a9628d
2 changed files with 12 additions and 3 deletions

View File

@@ -147,7 +147,7 @@ func (e *Error) As(target interface{}) bool {
}
}
return errors.As(e.Err, &te.Err)
return errors.As(te.Err, &e)
}
return ok