From 6b0c7342540aa3363c36c5be1057b76fc2ee64c5 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Thu, 29 Sep 2022 20:05:35 +0200 Subject: [PATCH] Revert "make the default for notify True" This reverts commit c192019a22a93d2c2778aa47e3a7321703d533ca. --- files/routes/posts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/posts.py b/files/routes/posts.py index 729a01c19..b3606298a 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -908,7 +908,7 @@ def submit_post(v, sub=None): post = Submission( private=bool(request.values.get("private","")), - notify=bool(request.values.get("notify","True")), + notify=bool(request.values.get("notify","")), club=club, author_id=v.id, over_18=bool(request.values.get("over_18","")),