fix time.time() call. Fixes #8446
This commit is contained in:
parent
471329a0e0
commit
7b3d595665
|
@ -1632,7 +1632,7 @@ class Connection(CommonConnection, ConnectionHandlers):
|
|||
iq.addChild(name='ping', namespace=nbxmpp.NS_PING)
|
||||
iq.setID(id_)
|
||||
def _on_response(resp):
|
||||
timePong = time_time()
|
||||
timePong = time.time()
|
||||
if not nbxmpp.isResultNode(resp):
|
||||
gajim.nec.push_incoming_event(PingErrorEvent(None, conn=self,
|
||||
contact=pingTo))
|
||||
|
@ -1641,7 +1641,7 @@ class Connection(CommonConnection, ConnectionHandlers):
|
|||
gajim.nec.push_incoming_event(PingReplyEvent(None, conn=self,
|
||||
contact=pingTo, seconds=timeDiff, control=control))
|
||||
if pingTo:
|
||||
timePing = time_time()
|
||||
timePing = time.time()
|
||||
self.connection.SendAndCallForResponse(iq, _on_response)
|
||||
else:
|
||||
self.connection.SendAndCallForResponse(iq, self._on_xmpp_ping_answer)
|
||||
|
|
Loading…
Reference in New Issue