Fix wrong hasSubscription logic for digest email

This commit is contained in:
Johannes Zellner
2018-06-15 13:44:33 +02:00
parent 35d9cc3c02
commit 843fec9dcb

View File

@@ -44,7 +44,7 @@ function maybeSend(callback) {
if (error) return callback(error);
var info = {
hasSubscription: appstore.isFreePlan(subscription),
hasSubscription: !appstore.isFreePlan(subscription),
pendingAppUpdates: pendingAppUpdates,
pendingBoxUpdate: updateInfo.box || null,