Pronouns labels on Bluesky

dont proxy queryLabels

Changed files
+2 -3
src
+2 -3
src/label.ts
···
uri: string,
) => {
const did = AppBskyActorDefs.isProfileView(subject) ? subject.did : subject;
-
const labels = await agent
-
.withProxy("atproto_labeler", DID)
-
.com.atproto.label.queryLabels({ sources: [DID], uriPatterns: [did] })
.catch((err) => {
console.log(err);
});
···
uri: string,
) => {
const did = AppBskyActorDefs.isProfileView(subject) ? subject.did : subject;
+
const labels = await agent.com.atproto.label
+
.queryLabels({ sources: [DID], uriPatterns: [did] })
.catch((err) => {
console.log(err);
});