mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 00:43:49 +01:00
[mastodon-client] Fix scopes parsing error in auth helper
This commit is contained in:
parent
693916b2f6
commit
d049de2935
@ -50,7 +50,7 @@ export class AuthHelpers {
|
||||
if (!user) throw new MastoApiError(401, "Unauthorized");
|
||||
|
||||
const body = ctx.request.body as any;
|
||||
const scopes = body.scopes as string[];
|
||||
const scopes = (typeof body.scopes === "string" ? body.scopes.split(' ') : body.scopes) ?? ['read'];
|
||||
const clientId = toSingleLast(body.client_id);
|
||||
|
||||
if (clientId == null) throw new MastoApiError(400, "Invalid client_id");
|
||||
@ -92,7 +92,7 @@ export class AuthHelpers {
|
||||
|
||||
public static async getAuthToken(ctx: MastoContext) {
|
||||
const body: any = ctx.request.body || ctx.request.query;
|
||||
const scopes = body.scopes as string[] ?? ['read'];
|
||||
const scopes = (typeof body.scopes === "string" ? body.scopes.split(' ') : body.scopes) ?? ['read'];
|
||||
const clientId = toSingleLast(body.client_id);
|
||||
const code = toSingleLast(body.code);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user