# HG changeset patch # User Goffi # Date 1548529713 -3600 # Node ID 25639611c3033f895d635ac8e572c69e85208c25 # Parent 33fa70c102de7bf03eb5d286e50e960893abb350 plugin XEP-0198: fixed typo resulting in a crash on resume diff -r 33fa70c102de -r 25639611c303 sat/plugins/plugin_xep_0198.py --- 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):