diff --git a/packages/backend/src/core/SignupService.ts b/packages/backend/src/core/SignupService.ts index 364bcf0f8..29eb65fda 100644 --- a/packages/backend/src/core/SignupService.ts +++ b/packages/backend/src/core/SignupService.ts @@ -82,7 +82,7 @@ export class SignupService { const isTheFirstUser = (await this.usersRepository.countBy({ host: IsNull() })) === 0; - if (!opts.ignorePreservedUsernames || !isTheFirstUser) { + if (!opts.ignorePreservedUsernames && !isTheFirstUser) { const instance = await this.metaService.fetch(true); const isPreserved = instance.preservedUsernames.map(x => x.toLowerCase()).includes(username.toLowerCase()); if (isPreserved) {