Skip to content

Commit

Permalink
BugFix for DataFeed could not find backward relationship for DataDocu…
Browse files Browse the repository at this point in the history
…ment
  • Loading branch information
chunlinyao committed Apr 14, 2023
1 parent c95e6a3 commit 1417b44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ class EntityDataFeed {
// entity name alone
String currentRelName = backwardRelList.get(i)
String currentRelEntityName = currentRelName.contains("#") ?
currentRelName.substring(0, currentRelName.indexOf("#")) :
currentRelName.substring(currentRelName.indexOf("#") + 1) :
currentRelName
// all values should be for the same entity, so just use the first
EntityDefinition prevRelValueEd = prevRelValueList.get(0).getEntityDefinition()
Expand Down

0 comments on commit 1417b44

Please sign in to comment.