copy changes from NoteCreate to NoteEdit

This commit is contained in:
dakkar 2024-11-08 15:55:50 +00:00
parent f079edaf3c
commit ffebe778d4
1 changed files with 12 additions and 8 deletions

View File

@ -220,7 +220,7 @@ export class NoteEditService implements OnApplicationShutdown {
private latestNoteService: LatestNoteService, private latestNoteService: LatestNoteService,
private noteCreateService: NoteCreateService, private noteCreateService: NoteCreateService,
) { ) {
this.updateNotesCountQueue = new CollapsedQueue(60 * 1000 * 5, this.collapseNotesCount, this.performUpdateNotesCount); this.updateNotesCountQueue = new CollapsedQueue(process.env.NODE_ENV !== 'test' ? 60 * 1000 * 5 : 0, this.collapseNotesCount, this.performUpdateNotesCount);
} }
@bindThis @bindThis
@ -591,13 +591,17 @@ export class NoteEditService implements OnApplicationShutdown {
noindex: MiUser['noindex']; noindex: MiUser['noindex'];
}, data: Option, silent: boolean, tags: string[], mentionedUsers: MinimumUser[]) { }, data: Option, silent: boolean, tags: string[], mentionedUsers: MinimumUser[]) {
// Register host // Register host
if (this.userEntityService.isRemoteUser(user)) { if (this.meta.enableStatsForFederatedInstances) {
this.federatedInstanceService.fetch(user.host).then(async i => { if (this.userEntityService.isRemoteUser(user)) {
this.updateNotesCountQueue.enqueue(i.id, 1); this.federatedInstanceService.fetch(user.host).then(async i => {
if (this.meta.enableChartsForFederatedInstances) { if (note.renote && note.text || !note.renote) {
this.instanceChart.updateNote(i.host, note, true); this.updateNotesCountQueue.enqueue(i.id, 1);
} }
}); if (this.meta.enableChartsForFederatedInstances) {
this.instanceChart.updateNote(i.host, note, true);
}
});
}
} }
// ハッシュタグ更新 // ハッシュタグ更新