Skip to content

Commit 153994e

Browse files
committed
Changed sort method for private
1 parent f963d47 commit 153994e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

managers/asset-operations-manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ export default class AssetOperationsManager {
279279
dataset.private = kcTools.generateMissingIdsForBlankNodes(dataset.private);
280280

281281
// Group private triples by subject and flatten
282-
const privateTriplesGrouped = kcTools.groupNquadsBySubject(dataset.private, true);
282+
const privateTriplesGrouped = kcTools.groupNquadsBySubject(dataset.private, false).sort();
283283
dataset.private = privateTriplesGrouped.flat();
284284

285285
// Compute private root and add to public

0 commit comments

Comments
 (0)