From 1577c1a736149a62110c6e95385fce60da7d23bf Mon Sep 17 00:00:00 2001 From: Devin Zuczek Date: Thu, 9 Jul 2026 19:07:04 -0400 Subject: [PATCH] disable featured rooms, causing some sort of issue with room lists --- apps/rooms/src/rooms.app.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/rooms/src/rooms.app.ts b/apps/rooms/src/rooms.app.ts index c3ad4c5..121a15d 100644 --- a/apps/rooms/src/rooms.app.ts +++ b/apps/rooms/src/rooms.app.ts @@ -307,7 +307,11 @@ const app = new Hono() // Featured rooms — a single always-active group whose `Rooms` are a randomly // ordered set of public, non-dorm rooms. No real curation yet, so `current` // just returns a shuffled list of eligible rooms in the featured-group shape. - .get('/featuredrooms/current', async (c) => { + // @todo This is not working. It somehow causes the other room listings to fail + // completely with NREs. I think it is the featured room load that is somehow + // corrupting the room cache. I tried sending the normal room shape but that + // did not seem to work. + .get('/XXXfeaturedrooms/current', async (c) => { return c.json(await getFeaturedRooms(c.env.DB)) })