Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralph Gasser committed Apr 3, 2024
1 parent 07b1d04 commit e5718c6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ class RelationExpander(
}

/* Expand outgoing relationships. */
for (out in (subjects[it.id] ?: emptyList())) {
it.addAttribute(RelationshipAttribute(Relationship(out.first to new[out.third], out.second, out.first to it)))
for (sub in (subjects[it.id] ?: emptyList())) {
it.addAttribute(RelationshipAttribute(Relationship(sub.first to it, sub.second, sub.third to new[sub.third])))
}

/* Emit. */
Expand Down

0 comments on commit e5718c6

Please sign in to comment.