Fix callback

This commit is contained in:
Bryan Ashby 2023-04-14 08:44:08 -06:00
parent 84c6478849
commit c4553a01a5
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
1 changed files with 1 additions and 1 deletions

View File

@ -1174,6 +1174,6 @@ exports.getModule = class ActivityPubWebHandler extends WebHandlerModule {
`Preparing ActivityPub settings for "${user.username}"` `Preparing ActivityPub settings for "${user.username}"`
); );
return prepareLocalUserAsActor(user, cb); return prepareLocalUserAsActor(user, { force: false }, cb);
} }
}; };