From 67ea66e7a3ba57fef2364710a5ae0042ad071ebe Mon Sep 17 00:00:00 2001 From: Jared Pereira Date: Wed, 11 Feb 2026 22:02:54 +0400 Subject: [PATCH] log data from update indexed step --- app/api/inngest/functions/sync_document_metadata.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/api/inngest/functions/sync_document_metadata.ts b/app/api/inngest/functions/sync_document_metadata.ts index 1c091192..ee4e6b86 100644 --- a/app/api/inngest/functions/sync_document_metadata.ts +++ b/app/api/inngest/functions/sync_document_metadata.ts @@ -35,7 +35,8 @@ export const sync_document_metadata = inngest.createFunction( return await supabaseServerClient .from("documents") .update({ indexed: !handleResult.isBridgy }) - .eq("uri", document_uri); + .eq("uri", document_uri) + .select(); }); if (!bsky_post_uri || handleResult.isBridgy) { -- 2.51.2