chore(email): force value to boolean in account deletion check

This commit is contained in:
Phil Booth 2018-08-28 14:56:31 +01:00
Родитель 2e9b9e65b1
Коммит a00dcac4da
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B8E710D82AE27976
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -144,7 +144,7 @@ module.exports = function (log, error) {
* Code below will fetch the email record and if it is an unverified new account then it will delete * Code below will fetch the email record and if it is an unverified new account then it will delete
* the account. * the account.
*/ */
const suggestAccountDeletion = !! bounce && bounce.bounceType const suggestAccountDeletion = !! bounce.bounceType
const work = [] const work = []
if (emailIsValid) { if (emailIsValid) {