parent
48504ed5e2
commit
cdf0b353db
1 changed files with 4 additions and 3 deletions
|
@ -565,10 +565,11 @@ class XEP_0050(BasePlugin):
|
||||||
session -- All stored data relevant to the current
|
session -- All stored data relevant to the current
|
||||||
command session.
|
command session.
|
||||||
"""
|
"""
|
||||||
|
sessionid = 'client:' + session['id']
|
||||||
try:
|
try:
|
||||||
del self.sessions[session['id']]
|
del self.sessions[sessionid]
|
||||||
except:
|
except Exception as e:
|
||||||
pass
|
log.error("Error deleting adhoc command session: %s" % e.message)
|
||||||
|
|
||||||
def _handle_command_result(self, iq):
|
def _handle_command_result(self, iq):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue