Fix suggested timeline endpoint typo

This commit is contained in:
Alex Gleason 2024-06-02 13:53:45 -05:00
parent 29753795e4
commit bafb42f034
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -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);