diff --git a/modules/rmeets/mod.ts b/modules/rmeets/mod.ts index 965409d3..e1c4973c 100644 --- a/modules/rmeets/mod.ts +++ b/modules/rmeets/mod.ts @@ -182,7 +182,8 @@ routes.get("/meet", (c) => { routes.get("/recordings", async (c) => { const space = c.req.param("space") || "demo"; const base = `/${escapeHtml(space)}/rmeets`; - const result = await miApiFetch("/meetings?limit=50&sort=-created_at"); + const prefix = encodeURIComponent(space + "_"); + const result = await miApiFetch(`/meetings?limit=50&sort=-created_at&conference_prefix=${prefix}`); let body: string; if (!result.ok) { @@ -490,6 +491,13 @@ routes.get("/", (c) => {

Open the full Jitsi Meet interface directly

+ + 🧠 + + 🎥