From e1123279c82e8d2cf3387604b5503a76ccd274c5 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 13 Dec 2020 13:49:32 +0000 Subject: [PATCH] Dormant months can be set in config file --- epicyon.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/epicyon.py b/epicyon.py index a9bfef608..214605140 100644 --- a/epicyon.py +++ b/epicyon.py @@ -2037,6 +2037,11 @@ maxFeedItemSizeKb = \ if maxFeedItemSizeKb is not None: args.maxFeedItemSizeKb = int(maxFeedItemSizeKb) +dormantMonths = \ + getConfigParam(baseDir, 'dormantMonths') +if dormantMonths is not None: + args.dormantMonths = int(dormantMonths) + allowNewsFollowers = \ getConfigParam(baseDir, 'allowNewsFollowers') if allowNewsFollowers is not None: