prevent infinite recursion when checking shared status

This commit is contained in:
zadam
2022-01-12 19:46:40 +01:00
parent 913d2c06f3
commit 412c745e53
2 changed files with 3 additions and 3 deletions

View File

@@ -790,7 +790,7 @@ class NoteShort {
const parentNote = froca.notes[parentNoteId];
if (!parentNote) {
if (!parentNote || parentNote.type === 'search') {
continue;
}