Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
* bug fix reported by Matthias
Browse files Browse the repository at this point in the history
  • Loading branch information
festo-i40 committed Aug 2, 2023
1 parent aba6762 commit 1b04536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AasxCsharpLibrary/Extensions/ExtendIReferable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ public static string CollectIdShortByParent(this IReferable referable)
head = parentReferable.CollectIdShortByParent() + "/";
// add own
var myid = "<no id-Short!>";
if (string.IsNullOrEmpty(referable.IdShort))
if (!string.IsNullOrEmpty(referable.IdShort))
myid = referable.IdShort.Trim();
// together
return head + myid;
Expand Down

0 comments on commit 1b04536

Please sign in to comment.