alpha
Login
or
Join now
danabra.mov
/
sidetrail
Star
1
Fork
1
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
an app to share curated trails
sidetrail.app
Star
1
Fork
1
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
add timeout for bsky api call
author
Dan Abramov
date
6 months ago
(Dec 6, 2025, 4:44 PM +0900)
commit
870b64b5
870b64b50a68cb30fa30fe930161f54af4ee4aa9
parent
ddd2f3f1
ddd2f3f1e1175e573e3e96d835d92e28cac77968
+1
1 changed file
Expand all
Collapse all
Unified
Split
data
queries.ts
+1
data/queries.ts
Reviewed
···
168
168
169
169
const res = await fetch(
170
170
`https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=${encodeURIComponent(did)}`,
171
171
+
{ signal: AbortSignal.timeout(5000) },
171
172
);
172
173
if (!res.ok) return undefined;
173
174