This commit is contained in:
tamaina 2025-07-04 20:43:27 +09:00
parent 6c0f2cadf1
commit ae84c776b7
1 changed files with 3 additions and 1 deletions

View File

@ -275,9 +275,11 @@ export class ApDeliverManagerService {
@bindThis @bindThis
public async deliverToUsers(actor: { id: MiLocalUser['id']; host: null; }, activity: IActivity, targets: MiRemoteUser[]): Promise<void> { public async deliverToUsers(actor: { id: MiLocalUser['id']; host: null; }, activity: IActivity, targets: MiRemoteUser[]): Promise<void> {
const manager = new DeliverManager( const manager = new DeliverManager(
this.userEntityService, this.userKeypairService,
this.followingsRepository, this.followingsRepository,
this.queueService, this.queueService,
this.accountUpdateService,
this.logger,
actor, actor,
activity, activity,
); );