Philipp Hörist pushed to branch nbxmpp_2.0 at gajim / python-nbxmpp


Commits:
a42c3cd5 by lovetox at 2022-03-14T19:20:51+01:00
Websocket: Don’t fail on invalid host-meta files

- - - - -
5600b5ab by lovetox at 2022-03-14T19:21:16+01:00
2.0.6

- - - - -


3 changed files:

- nbxmpp/__init__.py
- nbxmpp/addresses.py
- setup.cfg


Changes:

=====================================
nbxmpp/__init__.py
=====================================
@@ -4,4 +4,4 @@ from .protocol import *
 
 gi.require_version('Soup', '2.4')
 
-__version__ = "2.0.5"
+__version__ = "2.0.6"


=====================================
nbxmpp/addresses.py
=====================================
@@ -161,7 +161,7 @@ class ServerAddresses(Observable):
 
         try:
             uri = parse_websocket_uri(response_body.data)
-        except ValueError as error:
+        except Exception as error:
             log.info('Error parsing websocket uri: %s', error)
             self._on_request_resolved()
             return


=====================================
setup.cfg
=====================================
@@ -1,6 +1,6 @@
 [metadata]
 name = nbxmpp
-version = 2.0.5
+version = 2.0.6
 description = XMPP Library
 author = Yann Leboulanger, Philipp Hoerist
 author_email = [email protected]



View it on GitLab: 
https://dev.gajim.org/gajim/python-nbxmpp/-/compare/d1a86fbfa032e27b6da934e932f6ee9bda022b97...5600b5ab6ae66d4514179c6f8d2612957e389fdc

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/python-nbxmpp/-/compare/d1a86fbfa032e27b6da934e932f6ee9bda022b97...5600b5ab6ae66d4514179c6f8d2612957e389fdc
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to