summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-08-14 20:52:31 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-08-14 20:52:31 +1000
commit0e4bfcafd2eb3f56d3ae8ef7ab0758b6a3a0f275 (patch)
tree1d43d2a36d892a08647140d58a95a3e3760b2bb6 /src
parentwhen me (diff)
downloadserver-0e4bfcafd2eb3f56d3ae8ef7ab0758b6a3a0f275.tar.xz
:/
Diffstat (limited to 'src')
-rw-r--r--src/activitypub/routes/channel/#channel_id/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/activitypub/routes/channel/#channel_id/index.ts b/src/activitypub/routes/channel/#channel_id/index.ts

index bb76258e..fd83563e 100644 --- a/src/activitypub/routes/channel/#channel_id/index.ts +++ b/src/activitypub/routes/channel/#channel_id/index.ts
@@ -6,7 +6,7 @@ const router = Router(); export default router; router.get("/", route({}), async (req: Request, res: Response) => { - const id = req.params.id; + const id = req.params.channel_id; const channel = await Channel.findOneOrFail({ where: { id } });