data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: don't resolve facets oops when posting to bsky

dusk cec59f95 14a72613

+8 -3
+8 -3
src/routes/guestbook/+page.server.ts
··· 88 88 redirect(303, callbackUrl); 89 89 } 90 90 // post to guestbook account 91 - await ( 92 - await getBskyClient() 93 - ).post({ text: content, threadgate: { allowMentioned: false, allowFollowing: true } }); 91 + const client = await getBskyClient(); 92 + await client.post( 93 + { 94 + text: content, 95 + threadgate: { allowMentioned: false, allowFollowing: true } 96 + }, 97 + { resolveFacets: false } 98 + ); 94 99 // eslint-disable-next-line @typescript-eslint/no-explicit-any 95 100 } catch (err: any) { 96 101 scopedCookies.set('sendError', err.toString());