From 17a64ed320538f53dab4597dde11172919b48044 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Mon, 26 Jan 2026 12:23:26 -0500 Subject: [PATCH] fix(reports): add x-account-id header to Jitsi report query - Explicitly added the 'x-account-id' header to resolve HTTP 403 error when fetching Jitsi activity logs. - Ensures the server-side scope check passes for these report requests. --- src/lib/ae_reports/reports_functions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/ae_reports/reports_functions.ts b/src/lib/ae_reports/reports_functions.ts index 08a8dcad..44d07418 100644 --- a/src/lib/ae_reports/reports_functions.ts +++ b/src/lib/ae_reports/reports_functions.ts @@ -47,6 +47,7 @@ export async function load_jitsi_report({ hidden: 'all', limit: 500, // Fetch a reasonable number of recent logs params_json: params_json, + headers: { 'x-account-id': account_id }, log_lvl: 2 });