timelines: 3 seconds --> 1 second

This commit is contained in:
Alex Gleason 2023-09-11 17:26:47 -05:00
parent cdfdcb19bb
commit 55d5197136
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ const hashtagTimelineController: AppController = (c) => {
/** Render statuses for timelines. */
async function renderStatuses(c: AppContext, filters: DittoFilter<1>[]) {
const events = await mixer.getFilters(filters, { timeout: Time.seconds(3) });
const events = await mixer.getFilters(filters, { timeout: Time.seconds(1) });
if (!events.length) {
return c.json([]);