Mercurial > libervia-backend
changeset 2795:25639611c303
plugin XEP-0198: fixed typo resulting in a crash on resume
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 26 Jan 2019 20:08:33 +0100 |
parents | 33fa70c102de |
children | fdc53c8a5439 |
files | sat/plugins/plugin_xep_0198.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/sat/plugins/plugin_xep_0198.py Sat Jan 26 20:07:45 2019 +0100 +++ b/sat/plugins/plugin_xep_0198.py Sat Jan 26 20:08:33 2019 +0100 @@ -452,7 +452,7 @@ """Called when a requested ACK has not been received in time""" log.info(_(u"Ack was not received in time, aborting connection")) client.xmlstream.transport.abortConnection() - client._xep_0198_session.req_time = None + client._xep_0198_session.req_timer = None class XEP_0198_handler(xmlstream.XMPPHandler):