From 72256d935cec3b9687cad150365546dea3daf8f7 Mon Sep 17 00:00:00 2001 From: Son Nguyen Kim Date: Tue, 30 Aug 2022 22:41:08 +0200 Subject: [PATCH] do not notify lifetime user about coinbase sub (#1254) --- cron.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cron.py b/cron.py index 6b865e50..0232c342 100644 --- a/cron.py +++ b/cron.py @@ -236,6 +236,9 @@ def notify_manual_sub_end(): if need_reminder: user = coinbase_subscription.user + if user.lifetime: + continue + LOG.d( "Remind user %s that their coinbase subscription is ending soon", user )