From ea3dd172616f0eb5a303c70aab94272e0faf671e Mon Sep 17 00:00:00 2001 From: jakubmanczak Date: Sat, 28 Feb 2026 01:42:58 +0100 Subject: [PATCH] the most insignificant change you could imagine lowkey --- src/api/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/mod.rs b/src/api/mod.rs index 1f5c969..189821e 100644 --- a/src/api/mod.rs +++ b/src/api/mod.rs @@ -25,7 +25,7 @@ pub fn api_router() -> Router { .route("/api/users/@{handle}", get(users::get_by_handle)) .route("/api/sessions/{id}", get(sessions::get_by_id)) .route("/api/tags/{id}", get(tags::get_by_id)) - .route("/api/tags/#{id}", get(tags::get_by_name)) + .route("/api/tags/#{name}", get(tags::get_by_name)) } pub struct CompositeError(Response);