mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-22 20:13:36 +00:00
are
This commit is contained in:
@@ -28,7 +28,7 @@ export class AccountUpdateService {
|
||||
|
||||
@bindThis
|
||||
public async publishToFollowers(userId: MiUser['id']) {
|
||||
console.time('AccountUpdateService.publishToFollowers');
|
||||
console.time('time AccountUpdateService.publishToFollowers');
|
||||
const user = await this.usersRepository.findOneBy({ id: userId });
|
||||
if (user == null) throw new Error('user not found');
|
||||
|
||||
@@ -38,6 +38,6 @@ export class AccountUpdateService {
|
||||
this.apDeliverManagerService.deliverToFollowers(user, content);
|
||||
this.relayService.deliverToRelays(user, content);
|
||||
}
|
||||
console.timeEnd('AccountUpdateService.publishToFollowers');
|
||||
console.timeEnd('time AccountUpdateService.publishToFollowers');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -344,9 +344,9 @@ export class GlobalEventService {
|
||||
|
||||
@bindThis
|
||||
public publishMainStream<K extends keyof MainEventTypes>(userId: MiUser['id'], type: K, value?: MainEventTypes[K]): void {
|
||||
console.time('GlobalEventService.publishMainStream');
|
||||
console.time('time GlobalEventService.publishMainStream');
|
||||
this.publish(`mainStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
||||
console.time('GlobalEventService.publishMainStream');
|
||||
console.time('time GlobalEventService.publishMainStream');
|
||||
}
|
||||
|
||||
@bindThis
|
||||
|
||||
Reference in New Issue
Block a user