summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/AccountUpdateService.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-02-12 18:47:30 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-02-12 18:47:30 +0900
commit451bc0b44483840da4b82394d077d07a35b5c71a (patch)
tree703c3c880c238eaea8047300f5c8663a20c545e5 /packages/backend/src/core/AccountUpdateService.ts
parentMerge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff)
downloadsharkey-451bc0b44483840da4b82394d077d07a35b5c71a.tar.gz
sharkey-451bc0b44483840da4b82394d077d07a35b5c71a.tar.bz2
sharkey-451bc0b44483840da4b82394d077d07a35b5c71a.zip
refactor: fix types
Diffstat (limited to 'packages/backend/src/core/AccountUpdateService.ts')
-rw-r--r--packages/backend/src/core/AccountUpdateService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/AccountUpdateService.ts b/packages/backend/src/core/AccountUpdateService.ts
index 5f6dfca0ca..d8ba7b169d 100644
--- a/packages/backend/src/core/AccountUpdateService.ts
+++ b/packages/backend/src/core/AccountUpdateService.ts
@@ -32,7 +32,7 @@ export class AccountUpdateService {
// フォロワーがリモートユーザーかつ投稿者がローカルユーザーならUpdateを配信
if (this.userEntityService.isLocalUser(user)) {
- const content = this.apRendererService.renderActivity(this.apRendererService.renderUpdate(await this.apRendererService.renderPerson(user), user));
+ const content = this.apRendererService.addContext(this.apRendererService.renderUpdate(await this.apRendererService.renderPerson(user), user));
this.apDeliverManagerService.deliverToFollowers(user, content);
this.relayService.deliverToRelays(user, content);
}