Update packages/backend/src/core/entities/FlashEntityService.ts

Co-authored-by: zyoshoka <107108195+zyoshoka@users.noreply.github.com>
This commit is contained in:
syuilo 2024-10-08 18:59:10 +09:00 committed by GitHub
parent 9858e12078
commit d0213962bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ export class FlashEntityService {
// { schema: 'UserDetailed' } すると無限ループするので注意 // { schema: 'UserDetailed' } すると無限ループするので注意
const user = hint?.packedUser ?? await this.userEntityService.pack(flash.user ?? flash.userId, me); const user = hint?.packedUser ?? await this.userEntityService.pack(flash.user ?? flash.userId, me);
let isLiked = false; let isLiked = undefined;
if (meId) { if (meId) {
isLiked = hint?.likedFlashIds isLiked = hint?.likedFlashIds
? hint.likedFlashIds.includes(flash.id) ? hint.likedFlashIds.includes(flash.id)