Fixed: Library nodes are published in order to prevent disordered building of the tree

This commit is contained in:
Stefan Zermatten
2021-02-21 17:05:09 +02:00
parent 523c34b719
commit 8148f4d701

View File

@@ -52,6 +52,8 @@ Meteor.publish('library', function(libraryId){
libraryCursor,
LibraryNodes.find({
'ancestors.id': libraryId,
}, {
sort: {order: 1},
}),
];
});