連合なしアンケートのUpdateがリモートに配信されてしまうのを修正 (#11977)

This commit is contained in:
MeiMei
2023-10-07 12:19:05 +09:00
committed by GitHub
parent 71edc65d0d
commit c8d7a5ae76

View File

@@ -96,6 +96,8 @@ export class PollService {
const note = await this.notesRepository.findOneBy({ id: noteId });
if (note == null) throw new Error('note not found');
if (note.localOnly) return;
const user = await this.usersRepository.findOneBy({ id: note.userId });
if (user == null) throw new Error('note not found');