Add missing updatePerson properties
This commit is contained in:
parent
795fc5e7bc
commit
eee98358ac
|
@ -291,7 +291,9 @@ export async function updatePerson(uri: string, resolver?: Resolver): Promise<vo
|
||||||
name: person.name,
|
name: person.name,
|
||||||
url: person.url,
|
url: person.url,
|
||||||
endpoints: person.endpoints,
|
endpoints: person.endpoints,
|
||||||
isCat: (person as any).isCat === true ? true : false
|
isBot: object.type == 'Service',
|
||||||
|
isCat: (person as any).isCat === true ? true : false,
|
||||||
|
isLocked: person.manuallyApprovesFollowers
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue