diff --git a/common/errors/errors.go b/common/errors/errors.go index 03455d7e..7b1e6f82 100644 --- a/common/errors/errors.go +++ b/common/errors/errors.go @@ -37,7 +37,7 @@ type Error struct { func (v *Error) formMessage() string { if len(v.format) == 0 { - return serial.Concat(v.message) + return serial.Concat(v.message...) } return fmt.Sprintf(v.format, v.message...) }