You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
Mobile: Fixes #1068: Handle case where notebook has a parent that no longer exists
This commit is contained in:
@ -167,7 +167,13 @@ class Folder extends BaseItem {
|
||||
if (!folder.parent_id) {
|
||||
rootFolders.push(folder);
|
||||
} else {
|
||||
idToFolders[folder.parent_id].children.push(folder);
|
||||
if (!idToFolders[folder.parent_id]) {
|
||||
// It means the notebook is refering a folder that doesn't exist. In theory it shouldn't happen
|
||||
// but sometimes does - https://github.com/laurent22/joplin/issues/1068#issuecomment-450594708
|
||||
rootFolders.push(folder);
|
||||
} else {
|
||||
idToFolders[folder.parent_id].children.push(folder);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user