Darien Raymond 8 anni fa
parent
commit
f42894cc50
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      common/errors/errors.go

+ 1 - 1
common/errors/errors.go

@@ -28,7 +28,7 @@ func (v *Error) Inner() error {
 
 func New(msg ...interface{}) error {
 	return &Error{
-		message: serial.Concat(msg),
+		message: serial.Concat(msg...),
 	}
 }