Skip to content

Commit

Permalink
Fix capitalization typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Roblinde committed Nov 7, 2023
1 parent c8f6620 commit 9e2c11e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Contentful.AspNetCore/Contentful.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Description>Official .NET SDK for the Contentful Content Delivery and Management API for ASP.NET core.</Description>
<PackageId>contentful.aspnetcore</PackageId>
<NeutralLanguage>en-US</NeutralLanguage>
<VersionPrefix>7.4.2</VersionPrefix>
<VersionPrefix>7.4.3</VersionPrefix>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Contentful</Authors>
<Copyright>Contentful GmbH.</Copyright>
Expand All @@ -13,10 +13,10 @@
<PackageProjectUrl>https://github.com/contentful/contentful.net</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<Version>7.4.2</Version>
<AssemblyVersion>7.4.2.0</AssemblyVersion>
<Version>7.4.3</Version>
<AssemblyVersion>7.4.3.0</AssemblyVersion>
<RepositoryUrl>https://github.com/contentful/contentful.net</RepositoryUrl>
<FileVersion>7.4.2.0</FileVersion>
<FileVersion>7.4.3.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard1.5\Contentful.AspNetCore.xml</DocumentationFile>
Expand All @@ -25,7 +25,7 @@
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="contentful.csharp" Version="7.4.2" />
<PackageReference Include="contentful.csharp" Version="7.4.3" />
<PackageReference Include="gitlink" Version="3.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion Contentful.Core.Tests/ContentfulClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public async Task GetEntriesShouldSerializeCorrectlyToAnEnumerableOfArbitraryTyp

//Assert
Assert.Equal(9, res.Count());
Assert.Equal("eyJTcGFjZXMiOnsiMTIzIjoiNjY2IiwiMzMzIjoiOTk5IiwiZmRmZyI6ImdmNTY3OCJ9fQ==", crossRefHeader);
Assert.Equal("eyJzcGFjZXMiOnsiMTIzIjoiNjY2IiwiMzMzIjoiOTk5IiwiZmRmZyI6ImdmNTY3OCJ9fQ==", crossRefHeader);
Assert.Equal("Home & Kitchen", res.First().Title);
Assert.Equal("Mike Springer", res.First().Cross.Name);
}
Expand Down
2 changes: 1 addition & 1 deletion Contentful.Core/Contentful.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PackageId>contentful.csharp</PackageId>
<AssemblyTitle>contentful.net</AssemblyTitle>
<NeutralLanguage>en-US</NeutralLanguage>
<VersionPrefix>7.4.2</VersionPrefix>
<VersionPrefix>7.4.3</VersionPrefix>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Contentful</Authors>
<Copyright>Contentful GmbH.</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Contentful.Core/ContentfulClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ private async Task<HttpResponseMessage> Get(string url, string etag, Cancellatio
((IDictionary<string, object>)exo).Add(item.SpaceId, item.CdaToken);
}

var headerObject = new { Spaces = exo };
var headerObject = new { spaces = exo };
var jsonString = JsonConvert.SerializeObject(headerObject);
var base64EncodedValue = System.Convert.ToBase64String(Encoding.UTF8.GetBytes(jsonString));

Expand Down

0 comments on commit 9e2c11e

Please sign in to comment.