From 952813d57ab325cf367e60815d99e77b5869d82b Mon Sep 17 00:00:00 2001 From: Adhiraj Singh Date: Thu, 15 Sep 2022 07:10:16 +0530 Subject: [PATCH] lint: resolve lint problems --- src/Socket/messages-recv.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Socket/messages-recv.ts b/src/Socket/messages-recv.ts index ebfc2c6..bb9bc8e 100644 --- a/src/Socket/messages-recv.ts +++ b/src/Socket/messages-recv.ts @@ -65,7 +65,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => { logger.debug({ recv: { tag, attrs }, sent: stanza.attrs }, 'sent ack') await sendNode(stanza) } - + const rejectCall = async(callId: string, callFrom: string) => { const stanza: BinaryNode = ({ tag: 'call', @@ -76,13 +76,13 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => { content: [{ tag: 'reject', attrs: { - 'call-id': callId, - 'call-creator': callFrom, - count: '0', + 'call-id': callId, + 'call-creator': callFrom, + count: '0', }, content: undefined, }], - }); + }) await query(stanza) }