atproto explorer
0
fork

Configure Feed

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

fix validation priority

+2 -2
+2 -2
src/views/record.tsx
··· 61 61 rpc = new XRPC({ handler: new CredentialManager({ service: pds }) }); 62 62 try { 63 63 const res = await getRecord(did, params.collection, params.rkey); 64 + setRecord(res.data); 65 + setExternalLink(checkUri(res.data.uri)); 64 66 setNotice("Validating..."); 65 - setRecord(res.data); 66 67 await authenticate_post_with_doc( 67 68 res.data.uri, 68 69 res.data.cid!, ··· 70 71 didDocCache[res.data.uri.split("/")[2]], 71 72 ); 72 73 setValidRecord(true); 73 - setExternalLink(checkUri(res.data.uri)); 74 74 setNotice(""); 75 75 } catch (err: any) { 76 76 if (err.message) setNotice(err.message);