disable featured rooms, causing some sort of issue with room lists

This commit is contained in:
Devin Zuczek
2026-07-09 19:07:04 -04:00
parent 38c0a92dd9
commit 1577c1a736
+5 -1
View File
@@ -307,7 +307,11 @@ const app = new Hono<App>()
// 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))
})