Skip to content

Commit

Permalink
Disable custom server certificate validation due to xplat issue
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Jun 28, 2016
1 parent cff7bcb commit ec69c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exceptionless/Submission/DefaultSubmissionClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private HttpClient CreateHttpClient(string userAgent) {
#else
var handler = new HttpClientHandler { UseDefaultCredentials = true };
#if !PORTABLE && !NETSTANDARD1_2
handler.ServerCertificateCustomValidationCallback = delegate { return true; };
//handler.ServerCertificateCustomValidationCallback = delegate { return true; };
#endif
#endif

Expand Down

0 comments on commit ec69c5f

Please sign in to comment.