tangled
alpha
login
or
join now
vielle.dev
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atproto explorer
0
fork
atom
overview
issues
pulls
pipelines
remove lexicon logging
juli.ee
5 months ago
378e577a
137b1a1f
verified
This commit was signed with the committer's
known signature
.
juli.ee
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+2
-4
1 changed file
expand all
collapse all
unified
split
src
views
record.tsx
+2
-4
src/views/record.tsx
···
37
37
setCID(undefined);
38
38
setValidRecord(undefined);
39
39
setValidSchema(undefined);
40
40
+
setLexiconUri(undefined);
40
41
const pds = await resolvePDS(did);
41
42
rpc = new Client({ handler: new CredentialManager({ service: pds }) });
42
43
const res = await rpc.get("com.atproto.repo.getRecord", {
···
100
101
try {
101
102
const res = await resolveLexiconAuthority(nsid);
102
103
setLexiconUri(`at://${res}/com.atproto.lexicon.schema/${nsid}`);
103
103
-
console.log(res);
104
104
-
} catch (e) {
105
105
-
console.error(e);
106
106
-
}
104
104
+
} catch {}
107
105
};
108
106
109
107
const [record, { refetch }] = createResource(fetchRecord);