forked from FoundKeyGang/FoundKey
✌️
This commit is contained in:
parent
6b1dc866a8
commit
94e48ba122
1 changed files with 1 additions and 2 deletions
|
@ -48,8 +48,7 @@ export async function createPerson(value: any, resolver?: Resolver): Promise<IUs
|
||||||
object.type !== 'Person' ||
|
object.type !== 'Person' ||
|
||||||
typeof object.preferredUsername !== 'string' ||
|
typeof object.preferredUsername !== 'string' ||
|
||||||
!validateUsername(object.preferredUsername) ||
|
!validateUsername(object.preferredUsername) ||
|
||||||
!isValidName(object.name == '' ? null : object.name) ||
|
!isValidName(object.name == '' ? null : object.name)
|
||||||
!isValidDescription(object.summary)
|
|
||||||
) {
|
) {
|
||||||
log(`invalid person: ${JSON.stringify(object, null, 2)}`);
|
log(`invalid person: ${JSON.stringify(object, null, 2)}`);
|
||||||
throw new Error('invalid person');
|
throw new Error('invalid person');
|
||||||
|
|
Loading…
Reference in a new issue