From 584772f79827058f6a5a3d35be9aab2f888cec39 Mon Sep 17 00:00:00 2001 From: Son Date: Thu, 23 Dec 2021 19:28:57 +0100 Subject: [PATCH] fix upgrade_channel --- app/models.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/models.py b/app/models.py index 3bbd8f88..2e21788c 100644 --- a/app/models.py +++ b/app/models.py @@ -623,9 +623,6 @@ class User(Base, ModelMixin, UserMixin, PasswordOracle): f"Coinbase Subscription ends {coinbase_subscription.end_at.humanize()}" ) - if self.trial_end and arrow.now() < self.trial_end: - return "In Trial" - return ".\n".join(channels) # endregion