From d81e9fb75f9f150e199c982e7487e54772d41fb2 Mon Sep 17 00:00:00 2001 From: Son Date: Tue, 2 Nov 2021 15:47:31 +0100 Subject: [PATCH] fix manual subscription reminder sent for lifetime user --- cron.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cron.py b/cron.py index 5d267d40..916995fa 100644 --- a/cron.py +++ b/cron.py @@ -160,6 +160,10 @@ def notify_manual_sub_end(): # user can have a (free) manual subscription but has taken a paid subscription via # Paddle, Coinbase or Apple since then if manual_sub.is_giveaway: + if user.lifetime: + LOG.d("%s has a lifetime licence", user) + continue + if user.get_subscription(): LOG.d("%s has a active Paddle subscription", user) continue