Philipp Hörist pushed to branch master at gajim / python-nbxmpp


Commits:
d5e14693 by Philipp Hörist at 2026-06-30T22:23:21+02:00
fix: EME: Make name always a string

- - - - -


1 changed file:

- nbxmpp/modules/eme.py


Changes:

=====================================
nbxmpp/modules/eme.py
=====================================
@@ -40,7 +40,7 @@ class EME(BaseModule):
         if encryption is None:
             return
 
-        name = encryption.getAttr("name")
+        name = encryption.getAttr("name") or ""
         namespace = encryption.getAttr("namespace")
         if namespace is None:
             self._log.warning("No namespace on message")



View it on GitLab: 
https://dev.gajim.org/gajim/python-nbxmpp/-/commit/d5e14693af1f8e2fb839b3080f2d6b0f538a4964

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


_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to