diff --git a/pkg/service/transaction.go b/pkg/service/transaction.go index d6ee8c42..7c1cd03b 100644 --- a/pkg/service/transaction.go +++ b/pkg/service/transaction.go @@ -146,7 +146,7 @@ func (t transaction) transactionSetup(p transactionProcessingData) (transactionP return p, common.StringError(err) } email, err := t.repos.Contact.GetByUserIdAndType(user.Id, "email") - if err != nil { + if err != nil && errors.Cause(err).Error() != "not found" { return p, common.StringError(err) } user.Email = email.Data