mirror of
https://github.com/jellyfin/jellyfin-media-player.git
synced 2024-11-23 14:09:40 +00:00
ignoreSSLErrors should do the right thing (#74)
This commit is contained in:
parent
365420292f
commit
922d098227
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user