0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Fixed check for send_email_when_published

no-issue
This commit is contained in:
Fabien O'Carroll 2019-11-05 11:28:16 +07:00 committed by GitHub
parent 5aaee4e8b2
commit 3b11d25170
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,7 +48,7 @@ async function listener(model, options) {
return;
}
if (!post.get('send_email_when_published')) {
if (!model.get('send_email_when_published')) {
return;
}