From a7bfc665c3400639ed352d98595467b56f13f170 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 6 Dec 2024 14:50:16 -0600 Subject: [PATCH] Fix Bluesky's selfLabel name --- src/utils/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/api.ts b/src/utils/api.ts index e47779d2..4bbd32fc 100644 --- a/src/utils/api.ts +++ b/src/utils/api.ts @@ -292,7 +292,7 @@ function assertAuthenticated(c: AppContext, author: NostrEvent): void { !c.get('signer') && author.tags.some(([name, value, ns]) => name === 'l' && value === '!no-unauthenticated' && - ns === 'com.atproto.label.defs#selfLabels' + ns === 'com.atproto.label.defs#selfLabel' ) ) { throw new HTTPException(401, { message: 'Sign-in required.' });