ignoreSSLErrors should do the right thing (#74)

This commit is contained in:
Ian Walton 2021-04-28 18:21:52 -04:00
parent 365420292f
commit 922d098227

View File

@ -128,7 +128,7 @@ bool PlayerComponent::componentInitialize()
// See: https://github.com/plexinc/plex-media-player/issues/736
mpv::qt::set_property(m_mpv, "cache-seek-min", 5000);
if (!SettingsComponent::Get().ignoreSSLErrors()) {
if (SettingsComponent::Get().ignoreSSLErrors()) {
mpv::qt::set_property(m_mpv, "tls-ca-file", "");
mpv::qt::set_property(m_mpv, "tls-verify", "no");
} else {