We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58665d5 commit 39f4683Copy full SHA for 39f4683
CefSharp/PostDataExtensions.cs
@@ -81,7 +81,7 @@ public static string GetCharSet(this IRequest request)
81
public static string GetBody(this IPostDataElement postDataElement, string charSet = null)
82
{
83
var bytes = postDataElement.Bytes;
84
- if (bytes.Length == 0)
+ if (bytes is null || bytes.Length == 0)
85
86
return null;
87
}
0 commit comments