Skip to content

Commit

Permalink
fix: ErrorDetail
Browse files Browse the repository at this point in the history
  • Loading branch information
chyroc committed Apr 30, 2024
1 parent b44515a commit 4b0b483
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions type_error.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ type ErrorDetail struct {
}

func (r *ErrorDetail) String() string {
if r == nil {
return ""
}
s := new(strings.Builder)
permissionActions := []string{}
permissionSubjects := map[string][]string{}
Expand Down

0 comments on commit 4b0b483

Please sign in to comment.