From bafb42f034874ecdb8befdf00dd2ffb1a5ed1793 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sun, 2 Jun 2024 13:53:45 -0500 Subject: [PATCH] Fix suggested timeline endpoint typo --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 138348c..38ca4dc 100644 --- a/src/app.ts +++ b/src/app.ts @@ -195,7 +195,7 @@ app.post('/api/v2/media', mediaController); app.get('/api/v1/timelines/home', requireSigner, homeTimelineController); app.get('/api/v1/timelines/public', publicTimelineController); app.get('/api/v1/timelines/tag/:hashtag', hashtagTimelineController); -app.get('/api/v1/timeines/suggested', suggestedTimelineController); +app.get('/api/v1/timelines/suggested', suggestedTimelineController); app.get('/api/v1/preferences', preferencesController); app.get('/api/v1/search', searchController);