From 21e5cd443514b87c45e7d4dff52805a8792eaadf Mon Sep 17 00:00:00 2001 From: nicoco Date: Sat, 25 Feb 2023 10:29:21 +0100 Subject: [PATCH] xep_0030: get_items(): fix ifrom for local calls kwargs can never have 'ifrom' since it's in the method signature --- slixmpp/plugins/xep_0030/disco.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slixmpp/plugins/xep_0030/disco.py b/slixmpp/plugins/xep_0030/disco.py index 1f09dad1..710062d5 100644 --- a/slixmpp/plugins/xep_0030/disco.py +++ b/slixmpp/plugins/xep_0030/disco.py @@ -462,7 +462,7 @@ class XEP_0030(BasePlugin): if local or local is None and jid is None: items = await self.api['get_items'](jid, node, ifrom, kwargs) - return self._wrap(kwargs.get('ifrom', None), jid, items) + return self._wrap(ifrom, jid, items) iq = self.xmpp.Iq() # Check dfrom parameter for backwards compatibility