From 7a36b939e48b971ca2c8b8a86c71226f86d78c38 Mon Sep 17 00:00:00 2001 From: abhishek9686 Date: Wed, 24 Jan 2024 19:09:33 +0530 Subject: [PATCH] change trial period to 14 days --- pro/trial.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pro/trial.go b/pro/trial.go index 9b4025753..149120900 100644 --- a/pro/trial.go +++ b/pro/trial.go @@ -70,7 +70,7 @@ func initTrial() error { } trialDates := TrialDates{ TrialStartedAt: time.Now(), - TrialEndsAt: time.Now().Add(time.Hour * 24 * 30), + TrialEndsAt: time.Now().Add(time.Hour * 24 * 14), } t := TrialInfo{ PrivKey: tPriv,