#1 OCS Shares API

This commit is contained in:
2018-08-08 16:04:06 +02:00
parent e03fd9fd88
commit 3c45f09874
9 changed files with 248 additions and 20 deletions

View File

@ -38,7 +38,7 @@ type UserUpdateError struct {
func (e *UserUpdateError) Error() string {
var errors []string
for k, e := range e.Errors {
errors = append(errors, fmt.Sprintf("%s: %s", k, e.Error()))
errors = append(errors, fmt.Sprintf("%s: %v", k, e))
}
return strings.Join(errors, ",")
}