Skip to content
Prev Previous commit
Next Next commit
whitespace
  • Loading branch information
pavelsavara authored Jan 15, 2024
commit cd8fc46bd7da397e472b09320ce12c7596b7bd8e
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ internal static partial class BrowserInterop
{
public static string? GetProtocol(JSObject? webSocket)
{
if (webSocket == null || webSocket.IsDisposed)
if (webSocket == null || webSocket.IsDisposed)
{
return null;
}
Expand Down Expand Up @@ -48,7 +48,7 @@ internal static partial class BrowserInterop

public static int GetReadyState(JSObject? webSocket)
{
if (webSocket == null || webSocket.IsDisposed)
if (webSocket == null || webSocket.IsDisposed)
{
return -1;
}
Expand Down