tangled
alpha
login
or
join now
futur.blue
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
return before navigating
handle.invalid
4 months ago
95775f31
ea085b7b
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+3
1 changed file
expand all
collapse all
unified
split
src
views
repo.tsx
+3
src/views/repo.tsx
···
91
91
try {
92
92
const did = await resolveHandle(params.repo as Handle);
93
93
navigate(location.pathname.replace(params.repo, did));
94
94
+
return;
94
95
} catch {
95
96
try {
96
97
const nsid = params.repo as Nsid;
97
98
const res = await resolveLexiconAuthority(nsid);
98
99
navigate(`/at://${res}/com.atproto.lexicon.schema/${nsid}`);
100
100
+
return;
99
101
} catch {
100
102
navigate(`/${did}`);
103
103
+
return;
101
104
}
102
105
}
103
106
}