fix: 🐛 fix bsky login

This commit is contained in:
May 2024-11-21 19:52:10 -08:00
parent 0253aacb35
commit 22af0306fa
Signed by: split
GPG key ID: C325C61F0BF517C0
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "avahooks", "name": "avahooks",
"version": "1.0.0", "version": "1.0.1",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"start": "node ./dist/index.js", "start": "node ./dist/index.js",

View file

@ -64,7 +64,7 @@ export default translator({
// login to bluesky // login to bluesky
const { accessJwt, did }: { accessJwt: string; did: string } = const { accessJwt, did }: { accessJwt: string; did: string } =
await uaxrpc("POST", "/xrpc/com.atproto.server.createSession", { await uaxrpc("POST", "com.atproto.server.createSession", {
identifier, identifier,
password, password,
}) })