Adjust score and comment thresholds

This commit is contained in:
Tanner
2024-03-08 03:08:18 +00:00
parent 6c1aced06c
commit 7dc9e3ad16
3 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ def story(ref):
logging.info('Group ({}) not in whitelist.'.format(s['group']))
return False
if s['score'] < 15 and s['num_comments'] < 15:
if s['score'] < 15 and s['num_comments'] < 10:
logging.info('Score ({}) or num comments ({}) below threshold.'.format(s['score'], s['num_comments']))
return False