Skip to content

Commit d1c0326

Browse files
committed
Fix precondition header casing
1 parent ffb4fd2 commit d1c0326

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Source/Singulink.Net.Http.Api.Client/ApiClientBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public abstract class ApiClientBase
2424
/// <see cref="SendAsync{TResponse}(HttpRequestMessage, object?, CancellationToken)"/> method before calling the base implementation. It matches the default
2525
/// key expected by <c>CookieSessionHandler</c>.
2626
/// </remarks>
27-
protected const string DefaultUserIdPreconditionHeaderName = "If-User-ID";
27+
protected const string DefaultUserIdPreconditionHeaderName = "If-User-Id";
2828

2929
/// <summary>
3030
/// The default name of the cookie that holds the encrypted session token. Value is <c>"session-token"</c>.

Source/Singulink.Net.Http.Api.Client/Singulink.Net.Http.Api.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
44

5-
<Version>1.8</Version>
5+
<Version>1.8.1</Version>
66
<Description>API client library for the Singulink HTTP API Tookit.</Description>
77
<PackageTags>HTTP; API; Client;</PackageTags>
88
</PropertyGroup>

0 commit comments

Comments
 (0)