depot/pkgs/applications/networking/syncplay/trusted_certificates.patch
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

12 lines
638 B
Diff

diff --git a/syncplay/client.py b/syncplay/client.py
index b7cb245..be72d94 100755
--- a/syncplay/client.py
+++ b/syncplay/client.py
@@ -848,6 +848,7 @@ class SyncplayClient(object):
self._endpoint = HostnameEndpoint(reactor, host, port)
try:
certs = pem.parse_file(SSL_CERT_FILE)
+ certs = [cert for cert in certs if type(cert) is pem.Certificate]
trustRoot = trustRootFromCertificates([Certificate.loadPEM(str(cert)) for cert in certs])
self.protocolFactory.options = optionsForClientTLS(hostname=host, trustRoot=trustRoot)
self._clientSupportsTLS = True