Skip to content

Commit ebc0671

Browse files
committed
chore: fix merge issue
1 parent 0ab5b45 commit ebc0671

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.OpenApi.OData.Reader/Operation/EdmOperationOperationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ private void GenerateTagName(out string tagName, int skip = 1)
169169
break;
170170
// ODataNavigationSourceSegment
171171
default:
172-
tagName = NavigationSource.Name + "." + NavigationSource.EntityType.Name;
172+
tagName = NavigationSource.Name + "." + NavigationSource.EntityType().Name;
173173
break;
174174
}
175175
}

0 commit comments

Comments
 (0)