Only call should_heartbeat if auto_heartbeat is enabled
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
f1750d6df3
commit
c936703941
1 changed files with 10 additions and 8 deletions
|
@ -720,14 +720,16 @@ class XEP_0384(BasePlugin):
|
|||
finally:
|
||||
asyncio.ensure_future(self._publish_bundle())
|
||||
|
||||
should_heartbeat = await self._should_heartbeat(sender, isPrekeyMessage)
|
||||
if self.auto_heartbeat and should_heartbeat:
|
||||
log.debug('Decryption: Sending hearbeat to JID: %r', jid)
|
||||
async def send_heartbeat():
|
||||
log.debug('Sending a heartbeat message')
|
||||
msg = await self.make_heartbeat(JID(jid))
|
||||
msg.send()
|
||||
asyncio.ensure_future(send_heartbeat())
|
||||
if self.auto_heartbeat:
|
||||
log.debug('Checking if heartbeat is required. auto_hearbeat enabled.')
|
||||
should_heartbeat = await self._should_heartbeat(sender, isPrekeyMessage)
|
||||
if should_heartbeat:
|
||||
log.debug('Decryption: Sending hearbeat to JID %r', jid, device)
|
||||
async def send_heartbeat():
|
||||
log.debug('Sending a heartbeat message')
|
||||
msg = await self.make_heartbeat(JID(jid))
|
||||
msg.send()
|
||||
asyncio.ensure_future(send_heartbeat())
|
||||
|
||||
return body
|
||||
|
||||
|
|
Loading…
Reference in a new issue