diff --git a/crm/service/notification.go b/crm/service/notification.go index 1535b0b78..16fac1e94 100644 --- a/crm/service/notification.go +++ b/crm/service/notification.go @@ -102,7 +102,7 @@ func (s *notification) expandUserRefs(usrLookup notificationUserService, recipie // First, get userID off the table if userID, _ := strconv.ParseUint(rcpt, 10, 64); userID > 0 { if user, err := usrLookup.FindByID(userID); err != nil { - return nil, errors.Wrapf(err, "invalid recipient %s", userID) + return nil, errors.Wrapf(err, "invalid recipient %v", userID) } else { recipients[r] = user.Email + " " + user.Name }