Fix optin e-mails on subscriber addition to single option lists
This commit is contained in:
parent
bfe31b75c1
commit
f06d6b360d
|
@ -595,7 +595,7 @@ func sendOptinConfirmation(sub models.Subscriber, listIDs []int64, app *App) err
|
||||||
// Fetch double opt-in lists from the given list IDs.
|
// Fetch double opt-in lists from the given list IDs.
|
||||||
// Get the list of subscription lists where the subscriber hasn't confirmed.
|
// Get the list of subscription lists where the subscriber hasn't confirmed.
|
||||||
if err := app.queries.GetSubscriberLists.Select(&lists, sub.ID, nil,
|
if err := app.queries.GetSubscriberLists.Select(&lists, sub.ID, nil,
|
||||||
pq.Int64Array(listIDs), nil, models.SubscriptionStatusUnconfirmed, nil); err != nil {
|
pq.Int64Array(listIDs), nil, models.SubscriptionStatusUnconfirmed, models.ListOptinDouble); err != nil {
|
||||||
app.log.Printf("error fetching lists for opt-in: %s", pqErrMsg(err))
|
app.log.Printf("error fetching lists for opt-in: %s", pqErrMsg(err))
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue