Thanks to visit codestin.com Credit goes to github.com
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.
2 parents 58665d5 + 39f4683 commit 052ebdcCopy full SHA for 052ebdc
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