Skip to content
Snippets Groups Projects
Commit 2f2a8e53 authored by syuilo's avatar syuilo
Browse files

fix bug

parent 82de8b7c
No related branches found
No related tags found
No related merge requests found
......@@ -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>;
};
......
......@@ -30,7 +30,7 @@ export async function createNotification(
...data
} as Partial<Notification>);
const packed = await Notifications.pack(notification);
const packed = await Notifications.pack(notification, {});
// Publish notification event
publishMainStream(notifieeId, 'notification', packed);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment