increase timeout to 15s (#2958)

This commit is contained in:
Hailey
2024-02-23 12:37:49 -08:00
committed by GitHub
parent 35be8ec90e
commit 1c5a2232fc
+1 -1
View File
@@ -26,7 +26,7 @@ export interface LinkMeta {
export async function getLinkMeta(
agent: BskyAgent,
url: string,
timeout = 5e3,
timeout = 15e3,
): Promise<LinkMeta> {
if (isBskyAppUrl(url)) {
return extractBskyMeta(agent, url)