From 2d90deb96a86af6d8365994caa26a1ec1474a065 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Fri, 26 Aug 2011 22:04:06 -0700 Subject: The ifrom parameter doesn't need special treatment. --- sleekxmpp/plugins/xep_0050/adhoc.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'sleekxmpp/plugins/xep_0050/adhoc.py') diff --git a/sleekxmpp/plugins/xep_0050/adhoc.py b/sleekxmpp/plugins/xep_0050/adhoc.py index 54be1f86..5095f874 100644 --- a/sleekxmpp/plugins/xep_0050/adhoc.py +++ b/sleekxmpp/plugins/xep_0050/adhoc.py @@ -431,8 +431,7 @@ class xep_0050(base_plugin): iq = self.xmpp.Iq() iq['type'] = 'set' iq['to'] = jid - if ifrom: - iq['from'] = ifrom + iq['from'] = ifrom iq['command']['node'] = node iq['command']['action'] = action if sessionid is not None: @@ -482,9 +481,8 @@ class xep_0050(base_plugin): iq = self.xmpp.Iq() iq['type'] = 'set' iq['to'] = jid - if ifrom: - iq['from'] = ifrom - session['from'] = ifrom + iq['from'] = ifrom + session['from'] = ifrom iq['command']['node'] = node iq['command']['action'] = 'execute' sessionid = 'client:pending_' + iq['id'] -- cgit v1.2.3