Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix test for browser
  • Loading branch information
vcsjones authored and github-actions committed Jan 18, 2022
commit 8fdafcbd8e45d0f03845301a2e1cf9a5d0e50db6
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static partial class PlatformDetection
throw new PlatformNotSupportedException();

private static readonly Version s_openssl3Version = new Version(3, 0, 0);
public static bool IsOpenSsl3 => !IsOSXLike && !IsWindows && !IsAndroid ?
public static bool IsOpenSsl3 => !IsOSXLike && !IsWindows && !IsAndroid && !IsBrowser ?
GetOpenSslVersion() >= s_openssl3Version :
false;

Expand Down