連合なしアンケートのUpdateがリモートに配信されてしまうのを修正 (#11977)
This commit is contained in:
parent
71edc65d0d
commit
c8d7a5ae76
1 changed files with 2 additions and 0 deletions
|
@ -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');
|
||||
|
||||
|
|
Loading…
Reference in a new issue