Skip to content

Commit

Permalink
bsky testing w/ standard optional auth
Browse files Browse the repository at this point in the history
  • Loading branch information
devinivy committed Feb 1, 2024
1 parent c4ab360 commit d809464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bsky/src/auth-verifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class AuthVerifier {
standardOptional = async (
ctx: ReqCtx,
): Promise<StandardOutput | NullOutput> => {
if (isBearerToken(ctx.req)) {
if (isBearerToken(ctx.req) || isBasicToken(ctx.req)) {
return this.standard(ctx)
}
return this.nullCreds()
Expand Down

0 comments on commit d809464

Please sign in to comment.