From 5d3d2d609f456029bb3419e085fdd29314120b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Fri, 30 Jun 2023 15:30:38 +0200 Subject: imprv: Client: Return only copy of ignored errors --- nbxmpp/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nbxmpp/client.py b/nbxmpp/client.py index 68aad6f..c777017 100644 --- a/nbxmpp/client.py +++ b/nbxmpp/client.py @@ -203,7 +203,7 @@ class Client(Observable): @property def ignored_tls_errors(self): - return self._ignored_tls_errors + return set(self._ignored_tls_errors) def set_ignored_tls_errors(self, errors): if errors is None: -- cgit v1.2.3