From abbc5c7909d3bb38519149411a7747dc7009be3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Sun, 13 May 2018 14:25:19 +0200 Subject: [PATCH] xep_0384: fix prekeys attribute name --- stanza.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stanza.py b/stanza.py index 6865e0b..1ae9ccc 100644 --- a/stanza.py +++ b/stanza.py @@ -109,8 +109,7 @@ class PreKeyPublic(ElementBase): namespace = OMEMO_BASE_NS name = 'preKeyPublic' plugin_attrib = name - # TODO: XEP has mentions of "preKeyId" and "id" - interfaces = {'id'} + interfaces = {'preKeyId'} register_stanza_plugin(Message, Encrypted)