mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-25 05:29:07 +01:00
Also update host on updatePerson
This commit is contained in:
parent
e9e63ebaa8
commit
2f103229e5
@ -448,6 +448,8 @@ export async function updatePerson(
|
|||||||
|
|
||||||
const person = validateActor(object, uri);
|
const person = validateActor(object, uri);
|
||||||
|
|
||||||
|
const host = await getSubjectHostFromUri(uri);
|
||||||
|
|
||||||
logger.info(`Updating the Person: ${person.id}`);
|
logger.info(`Updating the Person: ${person.id}`);
|
||||||
|
|
||||||
// Fetch avatar and header image
|
// Fetch avatar and header image
|
||||||
@ -554,6 +556,10 @@ export async function updatePerson(
|
|||||||
updates.bannerId = banner.id;
|
updates.bannerId = banner.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (host) {
|
||||||
|
updates.host = host;
|
||||||
|
}
|
||||||
|
|
||||||
// Update user
|
// Update user
|
||||||
await Users.update(user.id, updates);
|
await Users.update(user.id, updates);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user