fix(missing-messages): linting fix

This commit is contained in:
Rajeh Taher
2024-03-12 20:17:39 +02:00
committed by GitHub
parent c264633291
commit 9d3dcfd08b

View File

@@ -103,7 +103,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
stanza.attrs.type = attrs.type
}
if(tag === "message") {
if(tag === 'message') {
stanza.attrs.from = authState.creds.me!.id
}
@@ -688,7 +688,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
await sendMessageAck(node)
return
}
const { fullMessage: msg, category, author, decrypt } = decryptMessageNode(
node,
authState.creds.me!.id,