Skip to content

Commit c791d66

Browse files
authored
Merge pull request #149 from datalust/dev
2025.2.2 Maintenance Release
2 parents 2a50109 + 96f574c commit c791d66

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/Seq.Api/Client/SeqApiClient.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,10 @@ static string EnsureAbsoluteWebSocketUri(string target, Uri apiBaseAddress)
528528
absoluteUnknownScheme = new UriBuilder(combined);
529529
}
530530

531-
absoluteUnknownScheme.Scheme = absoluteUnknownScheme.Scheme.Equals("http", StringComparison.OrdinalIgnoreCase) ? "ws" : "wss";
532-
531+
absoluteUnknownScheme.Scheme = absoluteUnknownScheme.Scheme.Equals("http", StringComparison.OrdinalIgnoreCase) ||
532+
absoluteUnknownScheme.Scheme.Equals("ws", StringComparison.OrdinalIgnoreCase) ?
533+
"ws" : "wss";
534+
533535
return absoluteUnknownScheme.ToString();
534536
}
535537

src/Seq.Api/Seq.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Client library for the Seq HTTP API.</Description>
4-
<VersionPrefix>2025.2.1</VersionPrefix>
4+
<VersionPrefix>2025.2.2</VersionPrefix>
55
<Authors>Datalust;Contributors</Authors>
66
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

0 commit comments

Comments
 (0)