diff options
author | saddfox <[email protected]> | 2023-02-09 12:09:56 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-09 06:09:56 -0500 |
commit | 7f05f932ffb84ba8b9e5630b2adc34dbd77e2b4a (patch) | |
tree | 717d0e189638bb5ef82fe04ca4b089e1406470fb | |
parent | d39f41d7e275e7426049aac69387e39b2ad64edb (diff) | |
download | bazarr-7f05f932ffb84ba8b9e5630b2adc34dbd77e2b4a.tar.gz bazarr-7f05f932ffb84ba8b9e5630b2adc34dbd77e2b4a.zip |
Fixed podnapisi provider on host with OpenSSL 3
-rw-r--r-- | libs/subliminal_patch/providers/podnapisi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/subliminal_patch/providers/podnapisi.py b/libs/subliminal_patch/providers/podnapisi.py index 5aafaa8fe..f567f25ac 100644 --- a/libs/subliminal_patch/providers/podnapisi.py +++ b/libs/subliminal_patch/providers/podnapisi.py @@ -112,7 +112,7 @@ class PodnapisiSubtitle(_PodnapisiSubtitle): class PodnapisiAdapter(HTTPAdapter): def init_poolmanager(self, connections, maxsize, block=False): ctx = ssl.create_default_context() - ctx.set_ciphers('DEFAULT@SECLEVEL=1') + ctx.set_ciphers('DEFAULT@SECLEVEL=0') ctx.check_hostname = False self.poolmanager = poolmanager.PoolManager( num_pools=connections, |