Merge branch 'develop' of https://codeberg.org/calckey/calckey into develop

This commit is contained in:
Kainoa Kanter 2023-04-07 23:56:06 -07:00
commit ee83b5b1a3

View file

@ -19,14 +19,18 @@ export default async (
// fetch the new and old accounts
const targetUri = getApHrefNullable(activity.target);
if (!targetUri) return "move: target uri is null";
const new_acc = await resolvePerson(targetUri);
let new_acc = await resolvePerson(targetUri);
if (!actor.uri) return "move: actor uri is null";
const old_acc = await resolvePerson(actor.uri);
let old_acc = await resolvePerson(actor.uri);
// update them if they're remote
if (new_acc.uri) await updatePerson(new_acc.uri);
if (old_acc.uri) await updatePerson(old_acc.uri);
// retrieve updated users
new_acc = await resolvePerson(targetUri);
old_acc = await resolvePerson(actor.uri);
// check if alsoKnownAs of the new account is valid
let isValidMove = true;
if (old_acc.uri) {