0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed reference to subscribed column

no-issue

This was causing the default subscribed value to be incorrect
This commit is contained in:
Fabien O'Carroll 2020-12-04 12:39:58 +00:00
parent b9bffadb68
commit d6acbd7b09

View file

@ -25,7 +25,7 @@ module.exports = (path, mapping, defaultLabels = []) => {
}
}
if (header === 'subscribed_to_emails') {
if (header === 'subscribed') {
return value.toLowerCase() !== 'false';
}