atproto explorer pdsls.dev
atproto tool

return before navigating

juli.ee 95775f31 ea085b7b

verified
Changed files
+3
src
views
+3
src/views/repo.tsx
···
try {
const did = await resolveHandle(params.repo as Handle);
navigate(location.pathname.replace(params.repo, did));
+
return;
} catch {
try {
const nsid = params.repo as Nsid;
const res = await resolveLexiconAuthority(nsid);
navigate(`/at://${res}/com.atproto.lexicon.schema/${nsid}`);
+
return;
} catch {
navigate(`/${did}`);
+
return;
}
}
}