From 2189d4b8692fb41dd5ac571dd9767b3a228edaf9 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 26 Aug 2026 18:04:40 -0500 Subject: [PATCH] Migrate to new header for topics passthrough --- src/lib/api/feed/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/api/feed/utils.ts b/src/lib/api/feed/utils.ts index b6ef738fcc..29bca09fc3 100644 --- a/src/lib/api/feed/utils.ts +++ b/src/lib/api/feed/utils.ts @@ -12,7 +12,7 @@ if (IS_WEB && typeof window !== 'undefined') { export function createBskyTopicsHeader(userInterests?: string) { return { - 'X-Bsky-Topics': debugTopics || userInterests || '', + 'x-atproto-bsky-topics': debugTopics || userInterests || '', } }