Skip to content

Commit

Permalink
fix(missing-messages): linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PurpShell committed Mar 12, 2024
1 parent c264633 commit 9d3dcfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Socket/messages-recv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 9d3dcfd

Please sign in to comment.