fix showing deleted notes in "recent changes" dialog, closes #994

This commit is contained in:
zadam 2020-04-29 23:25:34 +02:00
parent 94b57dadd7
commit 70e343f2fc

View file

@ -264,7 +264,7 @@ function isArchived(noteId) {
* @return {boolean} - true if given noteId has ancestorNoteId in any of its paths (even archived)
*/
function isInAncestor(noteId, ancestorNoteId) {
if (ancestorNoteId === noteId) { // special case
if (ancestorNoteId === 'root' || ancestorNoteId === noteId) {
return true;
}