Make review threads public by default

This commit is contained in:
rubenwardy 2019-11-12 22:39:17 +00:00
parent 904e09f0dd
commit 08a9ae7b94
1 changed files with 1 additions and 1 deletions

View File

@ -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