Skip to content

Commit

Permalink
Revert "misskey-dev#7892"
Browse files Browse the repository at this point in the history
This reverts commit 71d9c2a.
  • Loading branch information
xianonn committed Nov 6, 2021
1 parent 71d9c2a commit ad3f6e2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/remote/activitypub/kernel/delete/actor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,12 @@ export async function deleteActor(actor: IRemoteUser, uri: string): Promise<stri
if (actor.isDeleted) {
logger.info(`skip: already deleted`);
}
/*

const job = await createDeleteAccountJob(actor);

await Users.update(actor.id, {
isDeleted: true,
});

return `ok: queued ${job.name} ${job.id}`;
*/

return `skip: account deletion temporaly disabled`;
}

0 comments on commit ad3f6e2

Please sign in to comment.