Also update host on updatePerson

This commit is contained in:
Laura Hausmann 2023-09-09 18:43:13 +02:00
parent e9e63ebaa8
commit 2f103229e5
No known key found for this signature in database
GPG Key ID: D044E84C5BE01605

View File

@ -448,6 +448,8 @@ export async function updatePerson(
const person = validateActor(object, uri);
const host = await getSubjectHostFromUri(uri);
logger.info(`Updating the Person: ${person.id}`);
// Fetch avatar and header image
@ -554,6 +556,10 @@ export async function updatePerson(
updates.bannerId = banner.id;
}
if (host) {
updates.host = host;
}
// Update user
await Users.update(user.id, updates);