More debuging.

This commit is contained in:
Foil-hat-guy 2025-05-08 11:31:28 +03:00
parent e835556903
commit f7e0f38316
No known key found for this signature in database
GPG key ID: 221CC305A7B23591

View file

@ -43,7 +43,9 @@ func Join(errs ...error) (result error) {
}
for index, err := range errs {
fmt.Println(isUnwrapable(err), err.Error())
err = enshureUnwrapable(err)
fmt.Println(isUnwrapable(err), err.Error())
if index == 0 {
result = err
} else {