From 65cf369dcc594094b05d96118187e8b2b9809f7d Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 20 Mar 2025 14:43:51 -0700 Subject: [PATCH] add a comment --- bskylink/src/routes/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bskylink/src/routes/index.ts b/bskylink/src/routes/index.ts index d03f9208b8..9fd20d276b 100644 --- a/bskylink/src/routes/index.ts +++ b/bskylink/src/routes/index.ts @@ -15,7 +15,7 @@ export default function (ctx: AppContext, app: Express) { app = siteAssociation(ctx, app) // GET /.well-known/apple-app-site-association app = redirect(ctx, app) // GET /redirect app = createShortLink(ctx, app) // POST /link - app = root(ctx, app) + app = root(ctx, app) // GET / (redirect to bsky.app on root) app = shortLink(ctx, app) // GET /:linkId (should go last due to permissive matching) return app }