aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2019-11-12 22:39:17 +0000
committerrubenwardy <rw@rubenwardy.com>2019-11-12 22:39:17 +0000
commit08a9ae7b9452e7951af0556a25f486371b94eeaa (patch)
treec6201797c423b1e3ccd330f95aea9b2fcd5ddaa6
parent904e09f0ddfcec987f74536d2bfac9eedc058b36 (diff)
downloadcheatdb-08a9ae7b9452e7951af0556a25f486371b94eeaa.tar.xz
Make review threads public by default
-rw-r--r--app/views/threads.py2
1 files changed, 1 insertions, 1 deletions
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