From e1c59d1c3d8d6f2a53c8ca6a890c2fc9868cb281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Mon, 14 May 2018 10:57:30 +0200 Subject: [PATCH] xep_0384: Fix bundles NS --- stanza.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stanza.py b/stanza.py index 15bd82e..ad2fd28 100644 --- a/stanza.py +++ b/stanza.py @@ -13,7 +13,7 @@ from slixmpp.xmlstream import register_stanza_plugin, ElementBase OMEMO_BASE_NS = 'eu.siacs.conversations.axolotl' OMEMO_DEVICES_NS = OMEMO_BASE_NS + '.devicelist' -OMEMO_BUNDLE_NS = OMEMO_BASE_NS + '.bundle' +OMEMO_BUNDLES_NS = OMEMO_BASE_NS + '.bundles' class Devices(ElementBase):