Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit dfb69fd

Browse files
authored
Update RunTime.cs
missed one
1 parent 6e747d2 commit dfb69fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Titanium.Web.Proxy/Helpers/RunTime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private static bool isSocketReuseAvailable()
7575

7676
// make sure we are on .NETCoreApp
7777
ver = ver.ToLower(); // make everything lowercase to simplify comparison
78-
if (ver.Contains(".netcoreapp", StringComparison.InvariantCultureIgnoreCase))
78+
if (ver.Contains(".netcoreapp"))
7979
{
8080
var versionString = ver.Replace(".netcoreapp,version=v", "");
8181
var versionArr = versionString.Split('.');

0 commit comments

Comments
 (0)