From 08a9ae7b9452e7951af0556a25f486371b94eeaa Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Tue, 12 Nov 2019 22:39:17 +0000 Subject: [PATCH] Make review threads public by default --- app/views/threads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/threads.py b/app/views/threads.py index 4972abd..e430577 100644 --- a/app/views/threads.py +++ b/app/views/threads.py @@ -140,7 +140,7 @@ def new_thread_page(): abort(403) def_is_private = request.args.get("private") or False - if package is None or not package.approved: + if package is None: def_is_private = True allow_change = package and package.approved is_review_thread = package and not package.approved