Skip to content

Commit 5e442a5

Browse files
committed
hotfix: remove ToProperCase
1 parent c5bcaad commit 5e442a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/JsonApiDotNetCore/JsonApiDotNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<VersionPrefix>2.0.3</VersionPrefix>
3+
<VersionPrefix>2.0.4</VersionPrefix>
44
<TargetFrameworks>netstandard1.6</TargetFrameworks>
55
<AssemblyName>JsonApiDotNetCore</AssemblyName>
66
<PackageId>JsonApiDotNetCore</PackageId>

src/JsonApiDotNetCore/Services/EntityResourceService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public async Task<object> GetRelationshipsAsync(TId id, string relationshipName)
8787
public async Task<object> GetRelationshipAsync(TId id, string relationshipName)
8888
{
8989
relationshipName = _jsonApiContext.ContextGraph
90-
.GetRelationshipName<T>(relationshipName.ToProperCase());
90+
.GetRelationshipName<T>(relationshipName);
9191

9292
if (relationshipName == null)
9393
throw new JsonApiException("422", "Relationship name not specified.");

0 commit comments

Comments
 (0)