Update note-favorite.ts

This commit is contained in:
syuilo 2019-05-19 20:48:10 +09:00
parent c2c2824e50
commit c610e5ed9b
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -13,6 +13,8 @@ export class NoteFavoriteRepository extends Repository<NoteFavorite> {
return {
id: favorite.id,
createdAt: favorite.createdAt,
noteId: favorite.noteId,
note: await Notes.pack(favorite.note || favorite.noteId, me),
};
}