diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-12 18:47:30 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-12 18:47:30 +0900 |
| commit | 451bc0b44483840da4b82394d077d07a35b5c71a (patch) | |
| tree | 703c3c880c238eaea8047300f5c8663a20c545e5 /packages/backend/src/core/AccountUpdateService.ts | |
| parent | Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff) | |
| download | sharkey-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.ts | 2 |
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); } |