1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 14:26:28 +02:00

fix(backend): アンテナのノート、チャンネルのノート、通知が正常に作成できないことがある問題を修正

Fix #10482
This commit is contained in:
syuilo
2023-04-10 10:03:53 +09:00
parent 39cf80e19f
commit 70a06e30d5
4 changed files with 14 additions and 3 deletions

View File

@@ -329,7 +329,7 @@ export class NoteCreateService implements OnApplicationShutdown {
this.redisClient.xadd(
`channelTimeline:${data.channel.id}`,
'MAXLEN', '~', '1000',
`${this.idService.parse(note.id).date.getTime()}-*`,
'*',
'note', note.id);
}