Merge pull request #2040 from Bond-009/https

Validate https certificates
This commit is contained in:
dkanada 2019-11-24 21:41:03 +09:00 committed by GitHub
commit 6889d09cf7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -141,13 +141,6 @@ namespace Jellyfin.Server
// http://stackoverflow.com/questions/566437/http-post-returns-the-error-417-expectation-failed-c
ServicePointManager.Expect100Continue = false;
// CA5359: Do Not Disable Certificate Validation
#pragma warning disable CA5359
// Allow all https requests
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(delegate { return true; });
#pragma warning restore CA5359
Batteries_V2.Init();
if (raw.sqlite3_enable_shared_cache(1) != raw.SQLITE_OK)
{