diff --git a/packages/backend/src/server/api/mastodon/helpers/auth.ts b/packages/backend/src/server/api/mastodon/helpers/auth.ts index 2429af41b..ae6c13270 100644 --- a/packages/backend/src/server/api/mastodon/helpers/auth.ts +++ b/packages/backend/src/server/api/mastodon/helpers/auth.ts @@ -213,8 +213,8 @@ export class AuthHelpers { res.push(...this.writeScopes); else if (scope === "follow") res.push(...this.followScopes); - else - res.push(scope); + + res.push(scope); } return unique(res);