From dc806d99cd9423dc5006213b74ec79b423cd81f4 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me>
Date: Mon, 9 Oct 2023 19:45:52 -0400
Subject: [PATCH] Fixed typo from last commit

---
 api/activitypub/followers.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/api/activitypub/followers.ts b/api/activitypub/followers.ts
index c81981c6d..58cf9f83a 100644
--- a/api/activitypub/followers.ts
+++ b/api/activitypub/followers.ts
@@ -20,7 +20,7 @@ export default async function (req: VercelRequest, res: VercelResponse) {
 
   const output = {
     "@context": "https://www.w3.org/ns/activitystreams",
-    "id": `${process.env.ACTIVITYPUB_URL}/users/${process.env.ACTIVITYPUB_USER.toLowerCase}/following?page=1`,
+    "id": `${process.env.ACTIVITYPUB_URL}users/${process.env.ACTIVITYPUB_USER.toLowerCase}/following?page=1`,
     "type": "OrderedCollectionPage",
     "totalItems": actors.docs.length,
     "orderedItems": actors.docs.map(item=>item.get("actor"))
-- 
GitLab