Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2020-08-02 14:29:31 +0300
committerlovetox <philipp@hoerist.com>2020-09-23 00:28:00 +0300
commit1b5bfca911f1fc13d382f833eedbef230df3e075 (patch)
tree3eff6d777cc8d204be6a674e589535b83ff338cf /nbxmpp/dispatcher.py
parent397d7c5abe0d8b75351047f8d1e429f0fad34a45 (diff)
Add VCard Temp (XEP-0054) support
Diffstat (limited to 'nbxmpp/dispatcher.py')
-rw-r--r--nbxmpp/dispatcher.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/nbxmpp/dispatcher.py b/nbxmpp/dispatcher.py
index 0dbc5a7..678f26f 100644
--- a/nbxmpp/dispatcher.py
+++ b/nbxmpp/dispatcher.py
@@ -75,6 +75,7 @@ from nbxmpp.modules.chatstates import Chatstates
from nbxmpp.modules.register import Register
from nbxmpp.modules.http_upload import HTTPUpload
from nbxmpp.modules.mam import MAM
+from nbxmpp.modules.vcard_temp import VCardTemp
from nbxmpp.modules.misc import unwrap_carbon
from nbxmpp.modules.misc import unwrap_mam
from nbxmpp.structs import StanzaTimeoutError
@@ -180,6 +181,7 @@ class StanzaDispatcher(Observable):
self._modules['Register'] = Register(self._client)
self._modules['HTTPUpload'] = HTTPUpload(self._client)
self._modules['MAM'] = MAM(self._client)
+ self._modules['VCardTemp'] = VCardTemp(self._client)
for instance in self._modules.values():
for handler in instance.handlers: