updatePersonで再割り当てを考慮する

This commit is contained in:
mei23 2018-09-01 16:55:11 +09:00
parent eee98358ac
commit 15eaebe522

View file

@ -293,7 +293,12 @@ export async function updatePerson(uri: string, resolver?: Resolver): Promise<vo
endpoints: person.endpoints,
isBot: object.type == 'Service',
isCat: (person as any).isCat === true ? true : false,
isLocked: person.manuallyApprovesFollowers
isLocked: person.manuallyApprovesFollowers,
createdAt: Date.parse(person.published) || null,
publicKey: {
id: person.publicKey.id,
publicKeyPem: person.publicKey.publicKeyPem
},
}
});
}