fix
This commit is contained in:
parent
f3e43a0fc6
commit
363eb73fb3
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue