improvement

This commit is contained in:
piuvas 2024-12-26 12:27:00 -03:00
parent 64abef8be9
commit 8f96b50b00
No known key found for this signature in database
GPG key ID: 82743F52454C621D

View file

@ -104,8 +104,7 @@ export default abstract class Channel {
public onMessage?(type: string, body: JsonValue): void;
public async assignMyReaction(note: Packed<'Note'>, noteEntityService: NoteEntityService) {
if (this.user === undefined) { return; }
if (Object.keys(note.reactions).length > 0) {
if (this.user && Object.keys(note.reactions).length > 0) {
const myReaction = await noteEntityService.populateMyReaction(note, this.user.id);
note.myReaction = myReaction;
}