Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rensink committed Jun 25, 2024
1 parent 3349f19 commit a1cc82b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ private SortMap createSortMap() {
if (e.label().hasRole(EdgeRole.NODE_TYPE) && e.source().hasId()) {
String id = e.source().getId();
var typeLabel = e.getRuleLabel().getTypeLabel();
if (typeLabel != null) {
if (typeLabel != null && typeSortMap.containsKey(typeLabel)) {
for (var se : typeSortMap.get(typeLabel).entrySet()) {
var fieldName = new QualName(id, se.getKey());
result.add(fieldName, se.getValue());
Expand Down

0 comments on commit a1cc82b

Please sign in to comment.