feature: favicon

fix: partial attempt to clean up room loading
This commit is contained in:
Andy Burke 2025-07-04 13:27:57 -07:00
parent 5d244f65c7
commit be84aef1e0
10 changed files with 25 additions and 6 deletions

View file

@ -25,7 +25,7 @@ export async function GET(_req: Request, meta: Record<string, any>): Promise<Res
// doesn't yet filter that out in its all() logic
return entry.path.indexOf('/events/') === -1;
}
})).map((item) => item.load());
})).map((room_entry) => room_entry.load());
return Response.json(rooms, {
status: 200