From efd6ff88f8115d58a4357c63d0ed61e92b85fa5d Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer <_@chrisjrn.com> Date: Fri, 19 Aug 2016 10:29:04 +1000 Subject: [PATCH] "Random selection" change Reduces the frequency with which controversial proposals are brought to the front of the review queue. --- symposion/reviews/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symposion/reviews/views.py b/symposion/reviews/views.py index a3eebfc6..531f2c86 100644 --- a/symposion/reviews/views.py +++ b/symposion/reviews/views.py @@ -209,7 +209,7 @@ def review_random_proposal(request, section_slug): if len(too_few_set) > 0: proposals = too_few_set.all() - elif len(controversial_set) > 0: + elif len(controversial_set) > 0 and random.random() < 0.2: proposals = controversial_set.all() else: # Select a proposal with less than the median number of total votes