mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-27 19:19:54 +00:00
removed apply()s from xep 50
This commit is contained in:
parent
2349f849e3
commit
5dc967a360
1 changed files with 2 additions and 2 deletions
|
@ -82,7 +82,7 @@ class xep_0050(base.base_plugin):
|
|||
pointer = self.sessions[sessionid]['next']
|
||||
results = self.xmpp['xep_0004'].makeForm('result')
|
||||
results.fromXML(in_command.find('{jabber:x:data}x'))
|
||||
apply(pointer, (results,sessionid))
|
||||
pointer(results,sessioni)
|
||||
self.xmpp.send(self.makeCommand(xml.attrib['from'], in_command.attrib['node'], form=None, id=xml.attrib['id'], sessionid=sessionid, status='completed', actions=[]))
|
||||
del self.sessions[in_command.get('sessionid')]
|
||||
|
||||
|
@ -93,7 +93,7 @@ class xep_0050(base.base_plugin):
|
|||
pointer = self.sessions[sessionid]['next']
|
||||
results = self.xmpp['xep_0004'].makeForm('result')
|
||||
results.fromXML(in_command.find('{jabber:x:data}x'))
|
||||
form, npointer, next = apply(pointer, (results,sessionid))
|
||||
form, npointer, next = pointer(results,sessionid)
|
||||
self.sessions[sessionid]['next'] = npointer
|
||||
self.sessions[sessionid]['past'].append((form, pointer))
|
||||
actions = []
|
||||
|
|
Loading…
Reference in a new issue