aboutsummaryrefslogtreecommitdiff
path: root/app/blueprints/threads
diff options
context:
space:
mode:
Diffstat (limited to 'app/blueprints/threads')
-rw-r--r--app/blueprints/threads/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/blueprints/threads/__init__.py b/app/blueprints/threads/__init__.py
index 1455c5d..ad58545 100644
--- a/app/blueprints/threads/__init__.py
+++ b/app/blueprints/threads/__init__.py
@@ -82,8 +82,6 @@ def unsubscribe(id):
@bp.route("/threads/<int:id>/", methods=["GET", "POST"])
def view(id):
- clearNotifications(url_for("threads.view", id=id))
-
thread = Thread.query.get(id)
if thread is None or not thread.checkPerm(current_user, Permission.SEE_THREAD):
abort(404)