@@ -24,7 +24,9 @@ func microError(err error) error {
// return first error from details
if details := s.Details(); len(details) > 0 {
return microError(details[0].(error))
if verr, ok := details[0].(error); ok {
return microError(verr)
}
// try to decode micro *errors.Error
The note is not visible to the blocked user.