diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-21 22:26:45 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-21 22:26:45 +0900 |
| commit | 2f2a8e537d03cea8d43b1fa84b8f1a48934f5d63 (patch) | |
| tree | 0647f062ab39c98776be52b9e7f7a92005ab50fd /src/models | |
| parent | perf(server): Reduce database query (diff) | |
| download | sharkey-2f2a8e537d03cea8d43b1fa84b8f1a48934f5d63.tar.gz sharkey-2f2a8e537d03cea8d43b1fa84b8f1a48934f5d63.tar.bz2 sharkey-2f2a8e537d03cea8d43b1fa84b8f1a48934f5d63.zip | |
fix bug
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/repositories/notification.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/repositories/notification.ts b/src/models/repositories/notification.ts index 1027155873..986ddb1d42 100644 --- a/src/models/repositories/notification.ts +++ b/src/models/repositories/notification.ts @@ -16,7 +16,7 @@ export class NotificationRepository extends Repository<Notification> { public async pack( src: Notification['id'] | Notification, options: { - _hintForEachNotes_: { + _hintForEachNotes_?: { emojis: Emoji[] | null; myReactions: Map<Note['id'], NoteReaction | null>; }; |