From d151375d6366f7f79ca42b52be134328b72aaccf Mon Sep 17 00:00:00 2001 From: Ayo Date: Mon, 9 Mar 2026 16:59:48 +0100 Subject: [PATCH] feat: put thread page behind /thread route --- threads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threads.py b/threads.py index fa3d7ac..0a09486 100755 --- a/threads.py +++ b/threads.py @@ -179,7 +179,7 @@ async def tag(id): return render_template('_tag.html', threads=statuses, tag=id, app=app, attribution=attribution, render_date=datetime.now()) -@threads.route('/') +@threads.route('/thread/') @cache.cached(timeout=300) def thread(id): attribution = get_attribution()